├── .gitignore ├── .templateconf ├── LICENSE ├── README.rst ├── bitbake ├── .gitignore ├── AUTHORS ├── COPYING ├── ChangeLog ├── HEADER ├── LICENSE ├── MANIFEST.in ├── TODO ├── bin │ ├── bitbake │ ├── bitbake-diffsigs │ ├── bitbake-dumpsig │ ├── bitbake-layers │ ├── bitbake-prserv │ ├── bitbake-selftest │ ├── bitbake-worker │ ├── bitdoc │ ├── toaster │ └── toaster-eventreplay ├── classes │ └── base.bbclass ├── conf │ └── bitbake.conf ├── contrib │ ├── README │ ├── bbdev.sh │ ├── dump_cache.py │ └── vim │ │ ├── ftdetect │ │ └── bitbake.vim │ │ ├── ftplugin │ │ └── bitbake.vim │ │ ├── plugin │ │ └── newbb.vim │ │ └── syntax │ │ └── bitbake.vim ├── doc │ ├── COPYING.GPL │ ├── COPYING.MIT │ ├── Makefile │ ├── README │ ├── bitbake-user-manual │ │ ├── bitbake-user-manual-customization.xsl │ │ ├── bitbake-user-manual-execution.xml │ │ ├── bitbake-user-manual-fetching.xml │ │ ├── bitbake-user-manual-hello.xml │ │ ├── bitbake-user-manual-intro.xml │ │ ├── bitbake-user-manual-metadata.xml │ │ ├── bitbake-user-manual-ref-variables.xml │ │ ├── bitbake-user-manual-style.css │ │ ├── bitbake-user-manual.xml │ │ ├── figures │ │ │ └── bitbake-title.png │ │ └── html.css │ ├── bitbake.1 │ ├── poky.ent │ ├── template │ │ ├── Vera.ttf │ │ ├── Vera.xml │ │ ├── VeraMoBd.ttf │ │ ├── VeraMoBd.xml │ │ ├── VeraMono.ttf │ │ ├── VeraMono.xml │ │ ├── component.title.xsl │ │ ├── db-pdf.xsl │ │ ├── division.title.xsl │ │ ├── draft.png │ │ ├── fop-config.xml │ │ ├── formal.object.heading.xsl │ │ ├── gloss-permalinks.xsl │ │ ├── permalinks.xsl │ │ ├── section.title.xsl │ │ └── titlepage.templates.xml │ └── tools │ │ └── docbook-to-pdf ├── lib │ ├── bb │ │ ├── COW.py │ │ ├── __init__.py │ │ ├── build.py │ │ ├── cache.py │ │ ├── cache_extra.py │ │ ├── checksum.py │ │ ├── codeparser.py │ │ ├── command.py │ │ ├── compat.py │ │ ├── cooker.py │ │ ├── cookerdata.py │ │ ├── daemonize.py │ │ ├── data.py │ │ ├── data_smart.py │ │ ├── event.py │ │ ├── exceptions.py │ │ ├── fetch2 │ │ │ ├── __init__.py │ │ │ ├── bzr.py │ │ │ ├── clearcase.py │ │ │ ├── cvs.py │ │ │ ├── git.py │ │ │ ├── gitannex.py │ │ │ ├── gitsm.py │ │ │ ├── hg.py │ │ │ ├── local.py │ │ │ ├── npm.py │ │ │ ├── osc.py │ │ │ ├── perforce.py │ │ │ ├── repo.py │ │ │ ├── sftp.py │ │ │ ├── ssh.py │ │ │ ├── svn.py │ │ │ └── wget.py │ │ ├── main.py │ │ ├── methodpool.py │ │ ├── monitordisk.py │ │ ├── msg.py │ │ ├── namedtuple_with_abc.py │ │ ├── parse │ │ │ ├── __init__.py │ │ │ ├── ast.py │ │ │ └── parse_py │ │ │ │ ├── BBHandler.py │ │ │ │ ├── ConfHandler.py │ │ │ │ └── __init__.py │ │ ├── persist_data.py │ │ ├── process.py │ │ ├── progress.py │ │ ├── providers.py │ │ ├── pysh │ │ │ ├── __init__.py │ │ │ ├── builtin.py │ │ │ ├── interp.py │ │ │ ├── lsprof.py │ │ │ ├── pysh.py │ │ │ ├── pyshlex.py │ │ │ ├── pyshyacc.py │ │ │ ├── sherrors.py │ │ │ └── subprocess_fix.py │ │ ├── runqueue.py │ │ ├── server │ │ │ ├── __init__.py │ │ │ ├── process.py │ │ │ └── xmlrpc.py │ │ ├── siggen.py │ │ ├── taskdata.py │ │ ├── tests │ │ │ ├── __init__.py │ │ │ ├── codeparser.py │ │ │ ├── cow.py │ │ │ ├── data.py │ │ │ ├── fetch.py │ │ │ ├── parse.py │ │ │ └── utils.py │ │ ├── tinfoil.py │ │ ├── ui │ │ │ ├── __init__.py │ │ │ ├── buildinfohelper.py │ │ │ ├── depexp.py │ │ │ ├── icons │ │ │ │ ├── images │ │ │ │ │ ├── images_display.png │ │ │ │ │ └── images_hover.png │ │ │ │ ├── indicators │ │ │ │ │ ├── add-hover.png │ │ │ │ │ ├── add.png │ │ │ │ │ ├── alert.png │ │ │ │ │ ├── confirmation.png │ │ │ │ │ ├── denied.png │ │ │ │ │ ├── error.png │ │ │ │ │ ├── info.png │ │ │ │ │ ├── issues.png │ │ │ │ │ ├── refresh.png │ │ │ │ │ ├── remove-hover.png │ │ │ │ │ ├── remove.png │ │ │ │ │ └── tick.png │ │ │ │ ├── info │ │ │ │ │ ├── info_display.png │ │ │ │ │ └── info_hover.png │ │ │ │ ├── layers │ │ │ │ │ ├── layers_display.png │ │ │ │ │ └── layers_hover.png │ │ │ │ ├── packages │ │ │ │ │ ├── packages_display.png │ │ │ │ │ └── packages_hover.png │ │ │ │ ├── recipe │ │ │ │ │ ├── recipe_display.png │ │ │ │ │ └── recipe_hover.png │ │ │ │ ├── settings │ │ │ │ │ ├── settings_display.png │ │ │ │ │ └── settings_hover.png │ │ │ │ └── templates │ │ │ │ │ ├── templates_display.png │ │ │ │ │ └── templates_hover.png │ │ │ ├── knotty.py │ │ │ ├── ncurses.py │ │ │ ├── toasterui.py │ │ │ ├── uievent.py │ │ │ └── uihelper.py │ │ └── utils.py │ ├── bblayers │ │ ├── __init__.py │ │ ├── action.py │ │ ├── common.py │ │ ├── layerindex.py │ │ └── query.py │ ├── bs4 │ │ ├── AUTHORS.txt │ │ ├── COPYING.txt │ │ ├── NEWS.txt │ │ ├── __init__.py │ │ ├── builder │ │ │ ├── __init__.py │ │ │ ├── _html5lib.py │ │ │ ├── _htmlparser.py │ │ │ └── _lxml.py │ │ ├── dammit.py │ │ ├── diagnose.py │ │ ├── element.py │ │ ├── testing.py │ │ └── tests │ │ │ ├── __init__.py │ │ │ ├── test_builder_registry.py │ │ │ ├── test_docs.py │ │ │ ├── test_html5lib.py │ │ │ ├── test_htmlparser.py │ │ │ ├── test_lxml.py │ │ │ ├── test_soup.py │ │ │ └── test_tree.py │ ├── codegen.py │ ├── ply │ │ ├── __init__.py │ │ ├── lex.py │ │ └── yacc.py │ ├── progressbar │ │ ├── LICENSE.txt │ │ ├── __init__.py │ │ ├── compat.py │ │ ├── progressbar.py │ │ └── widgets.py │ ├── prserv │ │ ├── __init__.py │ │ ├── db.py │ │ └── serv.py │ ├── pyinotify.py │ └── toaster │ │ ├── __init__.py │ │ ├── bldcollector │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── urls.py │ │ └── views.py │ │ ├── bldcontrol │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── bbcontroller.py │ │ ├── localhostbecontroller.py │ │ ├── management │ │ │ ├── __init__.py │ │ │ └── commands │ │ │ │ ├── __init__.py │ │ │ │ ├── checksettings.py │ │ │ │ └── runbuilds.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ ├── 0002_auto_20160120_1250.py │ │ │ ├── 0003_add_cancelling_state.py │ │ │ ├── 0004_auto_20160523_1446.py │ │ │ ├── 0005_reorder_buildrequest_states.py │ │ │ ├── 0006_brlayer_local_source_dir.py │ │ │ ├── 0007_brlayers_optional_gitinfo.py │ │ │ └── __init__.py │ │ ├── models.py │ │ └── views.py │ │ ├── manage.py │ │ ├── orm │ │ ├── __init__.py │ │ ├── fixtures │ │ │ ├── README │ │ │ ├── oe-core.xml │ │ │ ├── poky.xml │ │ │ └── settings.xml │ │ ├── management │ │ │ ├── __init__.py │ │ │ └── commands │ │ │ │ ├── __init__.py │ │ │ │ └── lsupdates.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ ├── 0002_customimagerecipe.py │ │ │ ├── 0003_customimagepackage.py │ │ │ ├── 0004_provides.py │ │ │ ├── 0005_task_field_separation.py │ │ │ ├── 0006_add_cancelled_state.py │ │ │ ├── 0007_auto_20160523_1446.py │ │ │ ├── 0008_refactor_artifact_models.py │ │ │ ├── 0009_target_package_manifest_path.py │ │ │ ├── 0010_delete_layer_source_references.py │ │ │ ├── 0011_delete_layersource.py │ │ │ ├── 0012_use_release_instead_of_up_branch.py │ │ │ ├── 0013_recipe_parse_progress_fields.py │ │ │ ├── 0014_allow_empty_buildname.py │ │ │ ├── 0015_layer_local_source_dir.py │ │ │ └── __init__.py │ │ └── models.py │ │ ├── tests │ │ ├── __init__.py │ │ ├── browser │ │ │ ├── README │ │ │ ├── __init__.py │ │ │ ├── selenium_helpers.py │ │ │ ├── selenium_helpers_base.py │ │ │ ├── test_all_builds_page.py │ │ │ ├── test_all_projects_page.py │ │ │ ├── test_builddashboard_page.py │ │ │ ├── test_builddashboard_page_artifacts.py │ │ │ ├── test_builddashboard_page_recipes.py │ │ │ ├── test_builddashboard_page_tasks.py │ │ │ ├── test_js_unit_tests.py │ │ │ ├── test_landing_page.py │ │ │ ├── test_layerdetails_page.py │ │ │ ├── test_most_recent_builds_states.py │ │ │ ├── test_new_custom_image_page.py │ │ │ ├── test_new_project_page.py │ │ │ ├── test_project_builds_page.py │ │ │ ├── test_project_config_page.py │ │ │ ├── test_project_page.py │ │ │ ├── test_sample.py │ │ │ ├── test_task_page.py │ │ │ └── test_toastertable_ui.py │ │ ├── builds │ │ │ ├── README │ │ │ ├── __init__.py │ │ │ ├── buildtest.py │ │ │ └── test_core_image_min.py │ │ ├── commands │ │ │ ├── __init__.py │ │ │ ├── test_loaddata.py │ │ │ ├── test_lsupdates.py │ │ │ └── test_runbuilds.py │ │ ├── db │ │ │ ├── __init__.py │ │ │ └── test_db.py │ │ ├── eventreplay │ │ │ ├── README │ │ │ └── __init__.py │ │ ├── functional │ │ │ └── README │ │ ├── toaster-tests-requirements.txt │ │ └── views │ │ │ ├── README │ │ │ ├── __init__.py │ │ │ └── test_views.py │ │ ├── toastergui │ │ ├── __init__.py │ │ ├── api.py │ │ ├── buildtables.py │ │ ├── fixtures │ │ │ └── toastergui-unittest-data.xml │ │ ├── static │ │ │ ├── css │ │ │ │ ├── bootstrap.css │ │ │ │ ├── bootstrap.css.map │ │ │ │ ├── bootstrap.min.css │ │ │ │ ├── bootstrap.min.css.map │ │ │ │ ├── bootstrap3-transition.css │ │ │ │ ├── default.css │ │ │ │ ├── font-awesome.min.css │ │ │ │ ├── images │ │ │ │ │ ├── ui-bg_diagonals-thick_18_b81900_40x40.png │ │ │ │ │ ├── ui-bg_diagonals-thick_20_666666_40x40.png │ │ │ │ │ ├── ui-bg_flat_10_000000_40x100.png │ │ │ │ │ ├── ui-bg_glass_100_f6f6f6_1x400.png │ │ │ │ │ ├── ui-bg_glass_100_fdf5ce_1x400.png │ │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ │ ├── ui-bg_gloss-wave_35_f6a828_500x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_100_eeeeee_1x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_75_ffe45c_1x100.png │ │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ │ ├── ui-icons_228ef1_256x240.png │ │ │ │ │ ├── ui-icons_ef8c08_256x240.png │ │ │ │ │ ├── ui-icons_ffd27a_256x240.png │ │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ │ ├── jquery-ui.min.css │ │ │ │ ├── jquery-ui.structure.min.css │ │ │ │ ├── jquery-ui.theme.min.css │ │ │ │ ├── jquery.treetable.css │ │ │ │ ├── jquery.treetable.theme.default.css │ │ │ │ ├── jquery.treetable.theme.toaster.css │ │ │ │ ├── prettify.css │ │ │ │ ├── qunit-1.18.0.css │ │ │ │ └── screen.css │ │ │ ├── fonts │ │ │ │ ├── FontAwesome.otf │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ ├── html │ │ │ │ └── layer_deps_modal.html │ │ │ ├── img │ │ │ │ ├── logo.png │ │ │ │ └── toaster_bw.png │ │ │ ├── jquery-treetable-license │ │ │ │ ├── GPL-LICENSE.txt │ │ │ │ ├── MIT-LICENSE.txt │ │ │ │ └── README.md │ │ │ ├── jquery.treetable.theme.toaster.css │ │ │ └── js │ │ │ │ ├── .jshintrc │ │ │ │ ├── bootstrap.js │ │ │ │ ├── bootstrap.min.js │ │ │ │ ├── customrecipe.js │ │ │ │ ├── filtersnippet.js │ │ │ │ ├── importlayer.js │ │ │ │ ├── jquery-2.0.3.min.js │ │ │ │ ├── jquery-2.0.3.min.map │ │ │ │ ├── jquery-ui.min.js │ │ │ │ ├── jquery.cookie.js │ │ │ │ ├── jquery.treetable.js │ │ │ │ ├── jsrender.min.js │ │ │ │ ├── layerBtn.js │ │ │ │ ├── layerDepsModal.js │ │ │ │ ├── layerdetails.js │ │ │ │ ├── libtoaster.js │ │ │ │ ├── mrbsection.js │ │ │ │ ├── newcustomimage_modal.js │ │ │ │ ├── prettify.js │ │ │ │ ├── projectpage.js │ │ │ │ ├── projecttopbar.js │ │ │ │ ├── qunit-1.18.0.js │ │ │ │ ├── recipedetails.js │ │ │ │ ├── table.js │ │ │ │ ├── tests │ │ │ │ └── test.js │ │ │ │ ├── typeahead.jquery.js │ │ │ │ ├── ui-bootstrap-tpls-0.11.0.js │ │ │ │ └── ui-bootstrap-tpls-0.11.0.min.js │ │ ├── tablefilter.py │ │ ├── tables.py │ │ ├── templates │ │ │ ├── base.html │ │ │ ├── basebuilddetailpage.html │ │ │ ├── basebuildpage.html │ │ │ ├── baseprojectbuildspage.html │ │ │ ├── baseprojectpage.html │ │ │ ├── basetable_bottom.html │ │ │ ├── basetable_top.html │ │ │ ├── basetable_top_layers.html │ │ │ ├── bfile.html │ │ │ ├── brtargets.html │ │ │ ├── builddashboard.html │ │ │ ├── buildinfo-toastertable.html │ │ │ ├── builds-toastertable.html │ │ │ ├── configuration.html │ │ │ ├── configvars.html │ │ │ ├── cpuusage.html │ │ │ ├── customise_btn.html │ │ │ ├── customrecipe.html │ │ │ ├── detail_pagination_bottom.html │ │ │ ├── detail_search_header.html │ │ │ ├── detail_sorted_header.html │ │ │ ├── dirinfo.html │ │ │ ├── diskio.html │ │ │ ├── editcustomimage_modal.html │ │ │ ├── filtersnippet.html │ │ │ ├── generic-toastertable-page.html │ │ │ ├── importlayer.html │ │ │ ├── js-unit-tests.html │ │ │ ├── landing.html │ │ │ ├── landing_not_managed.html │ │ │ ├── layer_btn.html │ │ │ ├── layerdetails.html │ │ │ ├── machine_btn.html │ │ │ ├── mrb_section.html │ │ │ ├── newcustomimage.html │ │ │ ├── newcustomimage_modal.html │ │ │ ├── newproject.html │ │ │ ├── package_built_dependencies.html │ │ │ ├── package_built_detail.html │ │ │ ├── package_detail_base.html │ │ │ ├── package_included_dependencies.html │ │ │ ├── package_included_detail.html │ │ │ ├── package_included_reverse_dependencies.html │ │ │ ├── package_included_tabs.html │ │ │ ├── pkg_add_rm_btn.html │ │ │ ├── project.html │ │ │ ├── projectbuilds-toastertable.html │ │ │ ├── projectbuilds.html │ │ │ ├── projectconf.html │ │ │ ├── projects-toastertable.html │ │ │ ├── projecttopbar.html │ │ │ ├── recipe.html │ │ │ ├── recipe_btn.html │ │ │ ├── recipe_packages.html │ │ │ ├── recipedetails.html │ │ │ ├── snippets │ │ │ │ ├── gitrev_popover.html │ │ │ │ ├── pkg_dependencies_popover.html │ │ │ │ └── pkg_revdependencies_popover.html │ │ │ ├── tablesort.html │ │ │ ├── target.html │ │ │ ├── task.html │ │ │ ├── toastertable-filter.html │ │ │ ├── toastertable-simple.html │ │ │ ├── toastertable.html │ │ │ └── unavailable_artifact.html │ │ ├── templatetags │ │ │ ├── __init__.py │ │ │ ├── field_values_filter.py │ │ │ ├── objects_to_dictionaries_filter.py │ │ │ ├── project_url_tag.py │ │ │ └── projecttags.py │ │ ├── typeaheads.py │ │ ├── urls.py │ │ ├── views.py │ │ └── widgets.py │ │ └── toastermain │ │ ├── __init__.py │ │ ├── management │ │ ├── __init__.py │ │ └── commands │ │ │ ├── __init__.py │ │ │ ├── builddelete.py │ │ │ ├── buildslist.py │ │ │ ├── checksocket.py │ │ │ └── perf.py │ │ ├── settings.py │ │ ├── settings_production_example.py │ │ ├── settings_test.py │ │ ├── urls.py │ │ └── wsgi.py └── toaster-requirements.txt ├── conf ├── .gitignore ├── combo-layer-local-sample.conf ├── combo-layer.conf ├── combo-layerhook-generic.sh ├── combo-layerhook-openembedded-core.sh └── combo-layerhook-ostro-fixes.sh ├── doc ├── .gitignore ├── README.rst ├── architecture │ ├── .keepme │ ├── application-framework.rst │ ├── architecture-overview.rst │ ├── architecture.rst │ ├── disk-layout.rst │ ├── efi-boot.rst │ ├── images │ │ └── ostro_os_architecture.svg │ ├── security-threat-analysis.rst │ ├── software-update.rst │ └── system-and-security-architecture.rst ├── hardware │ ├── hardware.rst │ ├── sensors.rst │ ├── wireless-networking.rst │ └── wireless-networking │ │ ├── _static │ │ ├── at86rf212-galileo-pins.png │ │ ├── at86rf212-galileo.png │ │ ├── at86rf212-minnow.png │ │ └── cc2520.png │ │ ├── at86rf212.rst │ │ └── cc2520.rst ├── howtos │ ├── .keepme │ ├── app-dev-nodejs.rst │ ├── authorized-keys.rst │ ├── booting-and-installation.rst │ ├── building-images.rst │ ├── certificate-handling.rst │ ├── communication-guidelines.rst │ ├── doc-guidelines.rst │ ├── extras │ │ └── extract_rootfs.sh │ ├── firewall-configuration.rst │ ├── howtos.rst │ ├── ip-address-config.rst │ ├── modifying-ostro-kernel.rst │ ├── pull-request-guidelines.rst │ ├── software-update-server.rst │ └── uefi-secure-boot.rst ├── index.rst ├── quick_start │ ├── about.rst │ ├── access-support.rst │ ├── contributor-guide.rst │ ├── platforms.rst │ └── quick_start.rst └── sphinx_build │ ├── COPYING │ ├── Makefile │ ├── conf.py │ ├── make.bat │ ├── ostro_theme │ ├── layout.html │ ├── static │ │ └── ostro.css_t │ └── theme.conf │ └── substitutions.txt ├── meta-appfw ├── COPYING.MIT ├── README ├── classes │ └── ostro-app.bbclass ├── conf │ └── layer.conf └── recipes-appfw │ ├── example-app-c │ ├── example-app-c.bb │ └── files │ │ ├── COPYING.MIT │ │ ├── Makefile.am │ │ ├── aclocal.m4 │ │ ├── bootstrap │ │ ├── build-aux │ │ ├── shave-libtool.in │ │ └── shave.in │ │ ├── configure.ac │ │ ├── m4 │ │ ├── libtool.m4 │ │ ├── ltoptions.m4 │ │ ├── ltsugar.m4 │ │ ├── ltversion.m4 │ │ ├── lt~obsolete.m4 │ │ └── shave.m4 │ │ └── src │ │ ├── Makefile.am │ │ ├── hello-world.c │ │ └── manifest.in │ ├── example-app-node │ ├── example-app-node.bb │ └── files │ │ ├── COPYING.MIT │ │ ├── example.js │ │ ├── manifest │ │ └── package.json │ ├── example-app-python │ ├── example-app-python.bb │ └── files │ │ ├── COPYING.MIT │ │ ├── example.py │ │ └── manifest │ ├── iot-app-fw │ ├── files │ │ ├── 80-container-host0.network │ │ ├── 80-container-ve.network │ │ └── appfw-packet-forward.conf │ └── iot-app-fw_git.bb │ ├── sample-node0 │ ├── files │ │ ├── COPYING.MIT │ │ ├── manifest.in │ │ ├── package.json │ │ └── sample.js │ └── sample-node0.bb │ ├── sample-node1 │ ├── files │ │ ├── COPYING.MIT │ │ ├── manifest │ │ ├── package.json │ │ └── sample.js │ └── sample-node1.bb │ ├── sample-node2 │ ├── files │ │ ├── COPYING.MIT │ │ ├── manifest │ │ ├── package.json │ │ └── sample.js │ └── sample-node2.bb │ └── sample-node3 │ ├── files │ ├── COPYING.MIT │ ├── manifest │ ├── package.json │ ├── sample.js │ └── test-node3.service │ └── sample-node3.bb ├── meta-intel-iot-middleware ├── COPYING.MIT ├── MAINTAINERS ├── README ├── conf │ └── layer.conf ├── recipes-connectivity │ ├── mosquitto │ │ ├── files │ │ │ ├── build.patch │ │ │ └── mosquitto.service │ │ └── mosquitto_1.4.bb │ ├── paho-mqtt │ │ ├── files │ │ │ └── makefile.patch │ │ └── paho-mqtt_3.1.bb │ ├── sshpass │ │ ├── sshpass.inc │ │ └── sshpass_1.05.bb │ ├── tinyb │ │ ├── tinyb.inc │ │ ├── tinyb │ │ │ └── 0001-Release-0.4.2.patch │ │ └── tinyb_0.4.2.bb │ └── zeromq │ │ ├── cppzmq_git.bb │ │ └── zeromq_4.0.4.bb ├── recipes-devtools │ ├── iotkit-agent │ │ └── iotkit-agent_1.7.0.bb │ ├── libstrophe │ │ ├── libstrophe │ │ │ ├── 0001-Makefile.am-Rempve-setting-of-CFLAGS-user-var.patch │ │ │ └── 0001-added-support-for-sending-stanzas-from-multiple-thre.patch │ │ └── libstrophe_0.8.7.bb │ ├── mraa │ │ ├── mraa.inc │ │ └── mraa_1.3.0.bb │ ├── nodejs │ │ ├── files │ │ │ ├── 0001-nodejs-add-compile-flag-options-for-quark.patch │ │ │ └── 0002-generate-pkg-config-file-for-node-and-install.patch │ │ └── nodejs_4.2.4.bb │ ├── python │ │ ├── python-pyfirmata_0.9.5.bb │ │ └── python-redis_2.10.3.bb │ ├── swig │ │ ├── swig.inc │ │ ├── swig │ │ │ └── 0001-configure-use-pkg-config-for-pcre-detection.patch │ │ └── swig_3.0.6.bb │ ├── tempered │ │ ├── files │ │ │ └── 0001-common.c-remove-duplicate-declarations-of-int-i.patch │ │ └── tempered_1.0.bb │ └── upm │ │ └── upm_0.7.2.bb └── recipes-extended │ ├── hiredis │ ├── files │ │ └── 0001-Makefile-remove-hardcoding-of-CC.patch │ └── hiredis_0.13.1.bb │ └── linuxptp │ └── linuxptp_20121116.bb ├── meta-intel-iot-security ├── .gitignore ├── .travis.yml ├── COPYING.MIT ├── GPL-2.0 ├── README.md ├── meta-integrity │ ├── README.md │ ├── classes │ │ └── ima-evm-rootfs.bbclass │ ├── conf │ │ └── layer.conf │ ├── data │ │ ├── debug-keys │ │ │ ├── privkey_ima.pem │ │ │ └── x509_ima.der │ │ ├── ima_policy_appraise_all │ │ ├── ima_policy_hashed │ │ └── ima_policy_simple │ ├── lib │ │ └── oeqa │ │ │ └── runtime │ │ │ ├── __init__.py │ │ │ └── ima.py │ ├── recipes-core │ │ ├── initrdscripts │ │ │ ├── initramfs-framework-ima.bb │ │ │ └── initramfs-framework-ima │ │ │ │ └── ima │ │ ├── packagegroups │ │ │ └── packagegroup-ima-evm-utils.bb │ │ └── systemd │ │ │ ├── files │ │ │ ├── machine-id-commit-sync.conf │ │ │ └── random-seed-sync.conf │ │ │ └── systemd_%.bbappend │ ├── recipes-kernel │ │ └── linux │ │ │ ├── linux-%.bbappend │ │ │ └── linux │ │ │ ├── 0001-ima-fix-ima_inode_post_setattr.patch │ │ │ ├── 0002-ima-add-support-for-creating-files-using-the-mknodat.patch │ │ │ ├── Revert-ima-limit-file-hash-setting-by-user-to-fix-an.patch │ │ │ └── ima.cfg │ ├── recipes-security │ │ └── ima-evm-utils │ │ │ ├── ima-evm-utils.inc │ │ │ ├── ima-evm-utils │ │ │ ├── command-line-apply-operation-to-all-paths.patch │ │ │ ├── disable-doc-creation.patch │ │ │ └── evmctl.c-do-not-depend-on-xattr.h-with-IMA-defines.patch │ │ │ └── ima-evm-utils_git.bb │ └── scripts │ │ ├── ima-gen-CA-signed.sh │ │ ├── ima-gen-local-ca.sh │ │ └── ima-gen-self-signed.sh ├── meta-security-framework │ ├── COPYING.MIT │ ├── README.md │ ├── classes │ │ └── xattr-images.bbclass │ ├── conf │ │ └── layer.conf │ ├── lib │ │ └── oeqa │ │ │ └── runtime │ │ │ └── __init__.py │ ├── recipes-core │ │ └── packagegroups │ │ │ └── packagegroup-security-framework.bb │ ├── recipes-devtools │ │ └── e2fsprogs │ │ │ ├── e2fsprogs.inc │ │ │ ├── e2fsprogs │ │ │ ├── acinclude.m4 │ │ │ ├── mkdir.patch │ │ │ ├── ptest.patch │ │ │ ├── quiet-debugfs.patch │ │ │ ├── remove.ldconfig.call.patch │ │ │ └── run-ptest │ │ │ ├── e2fsprogs_%.bbappend │ │ │ ├── e2fsprogs_git.bb │ │ │ └── files │ │ │ └── ext_attr.c-fix-adding-multiple-xattrs-during-image-c.patch │ ├── recipes-kernel │ │ └── linux │ │ │ ├── linux-%.bbappend │ │ │ └── linux │ │ │ └── audit.cfg │ └── recipes-security │ │ ├── audit │ │ ├── audit │ │ │ ├── add-system-call-table-for-ARM.patch │ │ │ ├── audit-for-cross-compiling.patch │ │ │ ├── audit-python-configure.patch │ │ │ ├── audit-python.patch │ │ │ ├── audit-volatile.conf │ │ │ ├── auditd │ │ │ ├── auditd.service │ │ │ ├── disable-ldap.patch │ │ │ └── fix-swig-host-contamination.patch │ │ └── audit_2.3.2.bb │ │ ├── keyutils │ │ ├── keyutils │ │ │ ├── keyutils-arm-remove-m32-m64.patch │ │ │ ├── keyutils_fix_library_install.patch │ │ │ ├── keyutils_fix_x86-64_cflags.patch │ │ │ └── keyutils_fix_x86_cflags.patch │ │ └── keyutils_1.5.8.bb │ │ ├── libcap-ng │ │ ├── libcap-ng │ │ │ ├── CVE-2014-3215.patch │ │ │ └── python.patch │ │ └── libcap-ng_0.7.3.bb │ │ └── smacknet │ │ ├── files │ │ ├── smacknet │ │ └── smacknet.service │ │ └── smacknet.bb ├── meta-security-smack │ ├── README.md │ ├── classes │ │ └── deploy-files.bbclass │ ├── conf │ │ └── layer.conf │ ├── lib │ │ └── oeqa │ │ │ └── runtime │ │ │ ├── __init__.py │ │ │ ├── files │ │ │ ├── notroot.py │ │ │ ├── smack_test_file_access.sh │ │ │ ├── test_privileged_change_self_label.sh │ │ │ ├── test_smack_onlycap.sh │ │ │ ├── test_smack_tcp_sockets.sh │ │ │ └── test_smack_udp_sockets.sh │ │ │ └── smack.py │ ├── recipes-connectivity │ │ ├── bluez5 │ │ │ └── bluez5_%.bbappend │ │ └── connman │ │ │ └── connman_%.bbappend │ ├── recipes-core │ │ ├── base-files │ │ │ └── base-files_%.bbappend │ │ ├── coreutils │ │ │ └── coreutils_%.bbappend │ │ ├── systemd │ │ │ ├── systemd │ │ │ │ ├── 0003-tizen-smack-Handling-of-run-and-sys-fs-cgroup-v216.patch │ │ │ │ ├── 0003-tizen-smack-Handling-of-run-and-sys-fs-cgroup.patch │ │ │ │ ├── 0004-tizen-smack-Handling-of-dev-v216.patch │ │ │ │ ├── 0004-tizen-smack-Handling-of-dev.patch │ │ │ │ ├── 0005-tizen-smack-Handling-network-v216.patch │ │ │ │ ├── 0005-tizen-smack-Handling-network-v225.patch │ │ │ │ ├── 0005-tizen-smack-Handling-network-v228.patch │ │ │ │ ├── 0005-tizen-smack-Handling-network.patch │ │ │ │ ├── 0007-tizen-smack-Runs-systemd-journald-with-v216.patch │ │ │ │ ├── 0007-tizen-smack-Runs-systemd-journald-with.patch │ │ │ │ ├── mount-setup.c-fix-handling-of-symlink-Smack-labellin-v228.patch │ │ │ │ └── udev-smack-default.rules │ │ │ └── systemd_%.bbappend │ │ └── util-linux │ │ │ └── util-linux_%.bbappend │ ├── recipes-kernel │ │ └── linux │ │ │ ├── linux-%.bbappend │ │ │ └── linux │ │ │ ├── smack-default-lsm.cfg │ │ │ └── smack.cfg │ ├── recipes-security │ │ └── smack │ │ │ └── smack-userspace_git.bb │ └── recipes-test │ │ ├── mmap-smack-test │ │ ├── files │ │ │ └── mmap.c │ │ ├── mmap-smack-test.bb │ │ └── mmap-smack-test.bbappend │ │ ├── tcp-smack-test │ │ ├── files │ │ │ ├── tcp_client.c │ │ │ └── tcp_server.c │ │ ├── tcp-smack-test.bb │ │ └── tcp-smack-test.bbappend │ │ └── udp-smack-test │ │ ├── files │ │ ├── udp_client.c │ │ └── udp_server.c │ │ ├── udp-smack-test.bb │ │ └── udp-smack-test.bbappend └── scripts │ ├── rm_work_and_downloads.bbclass │ ├── rmwork.py │ ├── sstate2s3.sh │ ├── travis-build.sh │ ├── travis-cmd-wrapper.py │ └── travis-setup.sh ├── meta-intel ├── MAINTAINERS ├── README ├── README.sources ├── classes │ ├── rmc-db.bbclass │ └── rmc-systemd-boot.bbclass ├── common │ ├── custom-licenses │ │ ├── BSD_LMS │ │ └── Intel-Microcode-License │ ├── recipes-bsp │ │ ├── amt │ │ │ ├── files │ │ │ │ ├── atnetworktool-printf-fix.patch │ │ │ │ └── readlink-declaration.patch │ │ │ ├── lms │ │ │ │ └── 0001-Protocol.cpp-Add-whitespace-for-gcc6-compile-error.patch │ │ │ ├── lms7_7.1.20.bb │ │ │ └── lms8_8.0.0-7.bb │ │ ├── efilinux │ │ │ └── efilinux_1.1.bb │ │ ├── formfactor │ │ │ ├── formfactor │ │ │ │ └── machconfig │ │ │ └── formfactor_0.0.bbappend │ │ ├── gma500-gfx-check │ │ │ ├── gma500-gfx-check │ │ │ │ ├── gma500-gfx-check.conf │ │ │ │ └── gma500-gfx-check.sh │ │ │ └── gma500-gfx-check_1.0.bb │ │ ├── rmc │ │ │ ├── boards │ │ │ │ ├── Galileo2 │ │ │ │ │ ├── BOOTENTRY.CONFIG │ │ │ │ │ ├── boot.conf │ │ │ │ │ └── gallieo2.fp │ │ │ │ ├── NUC5i5RYB │ │ │ │ │ ├── BOOTENTRY.CONFIG │ │ │ │ │ ├── INSTALLER.CONFIG │ │ │ │ │ ├── POSTINSTALL.sh │ │ │ │ │ ├── boot.conf │ │ │ │ │ ├── install.conf │ │ │ │ │ └── nuc5i5.fp │ │ │ │ ├── T100-32bit │ │ │ │ │ ├── BOOTENTRY.CONFIG │ │ │ │ │ ├── T100-32bit.fp │ │ │ │ │ ├── boot.conf │ │ │ │ │ └── install.conf │ │ │ │ ├── broxton-m │ │ │ │ │ ├── BOOTENTRY.CONFIG │ │ │ │ │ ├── INSTALLER.CONFIG │ │ │ │ │ ├── KBOOTPARAM │ │ │ │ │ ├── POSTINSTALL.sh │ │ │ │ │ ├── bm.fp │ │ │ │ │ ├── boot.conf │ │ │ │ │ └── install.conf │ │ │ │ ├── minnowmax │ │ │ │ │ ├── BOOTENTRY.CONFIG │ │ │ │ │ ├── boot.conf │ │ │ │ │ └── minnowmax.fp │ │ │ │ ├── minnowmaxB3 │ │ │ │ │ ├── BOOTENTRY.CONFIG │ │ │ │ │ ├── boot.conf │ │ │ │ │ └── minnowmaxB3.fp │ │ │ │ ├── mohonpeak │ │ │ │ │ ├── BOOTENTRY.CONFIG │ │ │ │ │ ├── INSTALLER.CONFIG │ │ │ │ │ ├── KBOOTPARAM │ │ │ │ │ ├── POSTINSTALL.sh │ │ │ │ │ ├── boot.conf │ │ │ │ │ ├── install.conf │ │ │ │ │ └── mohonpeak.fp │ │ │ │ └── nucgen6 │ │ │ │ │ ├── BOOTENTRY.CONFIG │ │ │ │ │ ├── INSTALLER.CONFIG │ │ │ │ │ ├── KBOOTPARAM │ │ │ │ │ ├── POSTINSTALL.sh │ │ │ │ │ ├── boot.conf │ │ │ │ │ ├── install.conf │ │ │ │ │ ├── mylib.conf │ │ │ │ │ └── nuc6.fp │ │ │ ├── rmc-db.bb │ │ │ └── rmc.bb │ │ ├── systemd-boot │ │ │ ├── systemd-boot%.bbappend │ │ │ └── systemd-boot │ │ │ │ ├── 0001-efi-boot.c-workaround-for-Joule-BIOS-hang.patch │ │ │ │ ├── 0001-sd-boot-Link-RMC-library-into-bootloader.patch │ │ │ │ ├── 0002-sd-boot-Load-board-specific-boot-entries-from-RMC-da.patch │ │ │ │ └── 0003-sd-boot-Support-global-kernel-command-line-fragment.patch │ │ └── thermald │ │ │ └── thermald_1.5.3.bb │ ├── recipes-core │ │ ├── initrdscripts │ │ │ ├── files │ │ │ │ └── intel-x86-common │ │ │ │ │ └── init-install-efi.sh │ │ │ └── initramfs-live-install-efi_%.bbappend │ │ └── microcode │ │ │ ├── intel-microcode_20160714.bb │ │ │ └── iucode-tool_1.5.bb │ ├── recipes-extended │ │ ├── dpdk │ │ │ ├── dpdk.inc │ │ │ ├── dpdk │ │ │ │ ├── dpdk-16.04-Fix-for-misleading-indentation-error.patch │ │ │ │ ├── dpdk-16.04-add-RTE_KERNELDIR_OUT-to-split-kernel-bu.patch │ │ │ │ ├── dpdk-16.04-add-config-variable-to-enable-disable-dpdk_qat.patch │ │ │ │ ├── dpdk-16.04-dpdk-enable-ip_fragmentation-in-common_base-config.patch │ │ │ │ ├── dpdk-16.04-dpdk-fix-compilation-with-dynamic-libs.patch │ │ │ │ ├── dpdk-16.04-point-to-the-right-include-and-lib-path.patch │ │ │ │ ├── dpdk-16.07-add-sysroot-option-within-app-makefile.patch │ │ │ │ ├── dpdk-16.07-dpdk-fix-for-parellel-make-issue.patch │ │ │ │ └── dpdk-16.11-dpdk-fix-installation-warning-and-issue.patch │ │ │ └── dpdk_16.11.bb │ │ ├── openssl-qat │ │ │ ├── openssl-qat.inc │ │ │ ├── openssl-qat │ │ │ │ ├── openssl-qat_0.4.9-009-openssl_qat-add-openssl-async-specific-symbols.patch │ │ │ │ ├── openssl-qat_0.4.9-009-openssl_qat-add-version-script.patch │ │ │ │ ├── openssl_qat-build-qat_mem-ko-against-yocto-kernel.patch │ │ │ │ ├── openssl_qat-environment-variables-to-have-precedence.patch │ │ │ │ ├── openssl_qat-install-engines-in-libdir-ssl.patch │ │ │ │ ├── openssl_qat-pass-oe_ldflags-to-linker.patch │ │ │ │ └── openssl_qat-remove-redundant-rpaths.patch │ │ │ └── openssl-qat_0.4.9-009.bb │ │ ├── qat │ │ │ ├── qat16.inc │ │ │ ├── qat16 │ │ │ │ ├── qat16_2.3.0-34-make-sure-CFLAGS-are-correct.patch │ │ │ │ ├── qat16_2.3.0-34-qat-fix-for-cross-compilation-issue.patch │ │ │ │ ├── qat16_2.3.0-34-qat-remove-local-path-from-makefile.patch │ │ │ │ ├── qat16_2.5.0-80-qat-Added-include-dir-path.patch │ │ │ │ ├── qat16_2.5.0-80-qat-add-install-target-to-makefiles.patch │ │ │ │ ├── qat16_2.5.0-80-qat-change-in-return-type-of-func-in-kernel-v4.4.patch │ │ │ │ ├── qat16_2.6.0-65-qat-add-install-target-to-makefiles.patch │ │ │ │ └── qat16_2.6.0-65-qat-override-CC-LD-AR-only-when-it-is-not-define.patch │ │ │ ├── qat16_2.5.0-80.bb │ │ │ └── qat16_2.6.0-65.bb │ │ └── zlib-qat │ │ │ ├── zlib-qat │ │ │ ├── zlib-qat-0.4.7-002-qat_mem-build-qat_mem-ko-against-yocto-kernel-src.patch │ │ │ ├── zlib-qat-0.4.7-002-zlib-Remove-rpaths-from-makefile.patch │ │ │ └── zlib-qat-0.4.7-002-zlib-qat-add-a-install-target-to-makefile.patch │ │ │ └── zlib-qat_0.4.7-002.bb │ ├── recipes-graphics │ │ ├── intel-gpu-tools │ │ │ └── intel-gpu-tools_1.16.bb │ │ └── xorg-driver │ │ │ ├── xf86-video-ast_1.1.5.bb │ │ │ ├── xf86-video-mga │ │ │ ├── 0001-Adapt-Block-WakeupHandler-signature-for-ABI-23.patch │ │ │ └── checkfile.patch │ │ │ └── xf86-video-mga_1.6.4.bb │ ├── recipes-kernel │ │ └── linux │ │ │ ├── linux-yocto-dev.bbappend │ │ │ ├── linux-yocto-rt_4.1.bbappend │ │ │ ├── linux-yocto-rt_4.4.bbappend │ │ │ ├── linux-yocto-rt_4.8.bbappend │ │ │ ├── linux-yocto-tiny_4.1.bbappend │ │ │ ├── linux-yocto-tiny_4.4.bbappend │ │ │ ├── linux-yocto-tiny_4.8.bbappend │ │ │ ├── linux-yocto_4.1.bbappend │ │ │ ├── linux-yocto_4.4.bbappend │ │ │ └── linux-yocto_4.8.bbappend │ └── recipes-multimedia │ │ ├── gstreamer │ │ ├── gstreamer-vaapi-1.0_1.8.2.bb │ │ ├── gstreamer-vaapi.inc │ │ └── gstreamer-vaapi │ │ │ └── install-tests.patch │ │ └── libva │ │ ├── libva-intel-driver_1.7.2.bb │ │ ├── libva_1.7.2.bb │ │ └── va-intel.bb ├── conf │ ├── layer.conf │ └── machine │ │ ├── include │ │ ├── intel-common-pkgarch.inc │ │ ├── intel-core2-32-common.inc │ │ ├── intel-corei7-64-common.inc │ │ ├── intel-quark-common.inc │ │ └── meta-intel.inc │ │ ├── intel-core2-32.conf │ │ ├── intel-corei7-64.conf │ │ └── intel-quark.conf ├── documentation │ └── rmc │ │ └── README ├── meta-tlk │ ├── COPYING.MIT │ ├── README │ ├── conf │ │ └── layer.conf │ ├── recipes-core │ │ ├── base-files │ │ │ ├── base-files_3.0.14.bbappend │ │ │ └── files │ │ │ │ └── motd │ │ └── psplash │ │ │ ├── files │ │ │ └── psplash-tlk.png │ │ │ └── psplash_git.bbappend │ └── recipes-kernel │ │ └── linux │ │ ├── linux-yocto │ │ └── time-limited-kernel.cfg │ │ ├── linux-yocto_%.bbappend │ │ └── linux-yocto_tlk.inc └── scripts │ └── lib │ └── wic │ └── canned-wks │ ├── galileodisk-sd.wks │ ├── galileodisk-usb.wks │ └── systemd-bootdisk-uuid.wks ├── meta-iot-web ├── LICENSE ├── README.md ├── conf │ └── layer.conf ├── recipes-core │ └── packagegroups │ │ ├── packagegroup-nodejs-runtime-tools.bb │ │ └── packagegroup-nodejs-runtime.bb ├── recipes-devtools │ ├── galileo-io │ │ ├── galileo-io │ │ │ ├── lockdown.json │ │ │ └── npm-shrinkwrap.json │ │ └── galileo-io_0.9.4.bb │ ├── johnny-five │ │ ├── johnny-five │ │ │ ├── lockdown.json │ │ │ └── npm-shrinkwrap.json │ │ └── johnny-five_0.9.59.bb │ └── nodejs │ │ ├── files │ │ ├── 0001-nodejs-add-compile-flag-options-for-quark.patch │ │ └── 0002-generate-pkg-config-file-for-node-and-install.patch │ │ └── nodejs_4.5.0.bb ├── recipes-smarthome │ ├── smarthome-fan │ │ ├── files │ │ │ └── smarthome-fan.service │ │ └── smarthome-fan_git.bb │ ├── smarthome-gateway │ │ ├── files │ │ │ ├── 0001-Remove-iotivity-node-dependency.patch │ │ │ ├── power-uart.service │ │ │ └── smarthome-gateway.service │ │ └── smarthome-gateway.bb │ ├── smarthome-ocf-servers │ │ ├── files │ │ │ ├── smarthome-button-toggle.service │ │ │ ├── smarthome-buzzer.service │ │ │ ├── smarthome-gas.service │ │ │ ├── smarthome-illuminance.service │ │ │ ├── smarthome-led.service │ │ │ ├── smarthome-motion.service │ │ │ ├── smarthome-rgbled.service │ │ │ └── smarthome-temperature.service │ │ └── smarthome-ocf-servers_git.bb │ └── smarthome-solar │ │ ├── files │ │ └── smarthome-solar.service │ │ └── smarthome-solar_git.bb └── recipes-web │ ├── iot-rest-api-server │ ├── files │ │ ├── 0001-Remove-iotivity-node-dependency.patch │ │ ├── iot-rest-api-server-ipv4.conf │ │ ├── iot-rest-api-server-ipv6.conf │ │ ├── iot-rest-api-server.service │ │ └── iot-rest-api-server.socket │ └── iot-rest-api-server.bb │ └── iotivity-node │ └── iotivity-node_1.1.1-3.bb ├── meta-iotqa ├── .gitignore ├── COPYING.MIT ├── OstroTestExecution.rst ├── README.md ├── classes │ ├── deploy-files.bbclass │ └── test-iot.bbclass ├── conf │ ├── layer.conf │ └── test │ │ ├── appfw.manifest │ │ ├── beaglebone.iottest.manifest │ │ ├── bleno.manifest │ │ ├── bluetooth.forci.manifest │ │ ├── bluetooth.manifest │ │ ├── bsp.manifest │ │ ├── bsp_galileo.manifest │ │ ├── can.manifest │ │ ├── coap.manifest │ │ ├── ethernet.manifest │ │ ├── galileo.iottest.manifest │ │ ├── graphics.manifest │ │ ├── iotivity.manifest │ │ ├── iotivitynode.upstream.manifest │ │ ├── iottest.manifest │ │ ├── manual-1.csv │ │ ├── manual.csv │ │ ├── minnowmax.iottest.manifest │ │ ├── misc.manifest │ │ ├── mqtt.manifest │ │ ├── nodejs-crypto-api.manifest │ │ ├── nodejs-gpio.manifest │ │ ├── nodejs-i2c.manifest │ │ ├── nodejs-pwm.manifest │ │ ├── nodejs-spi.manifest │ │ ├── nodejs-uart.manifest │ │ ├── nodejs.manifest │ │ ├── pnp.manifest │ │ ├── python.manifest │ │ ├── restapiserver.manifest │ │ ├── security.manifest │ │ ├── sensor_edison.manifest │ │ ├── sensor_galileo.manifest │ │ ├── sensor_minnowmax.manifest │ │ ├── soletta.manifest │ │ ├── solettaplatform.manifest │ │ ├── stability.manifest │ │ ├── virtualbox.iottest.manifest │ │ ├── wifi.manifest │ │ └── zigbee.manifest ├── lib │ ├── baserunner │ │ ├── __init__.py │ │ ├── baserunner.py │ │ ├── controller │ │ │ ├── SSHTarget.py │ │ │ ├── __init__.py │ │ │ └── base_target.py │ │ ├── targetrunner.py │ │ └── util │ │ │ ├── __init__.py │ │ │ ├── log.py │ │ │ ├── tag.py │ │ │ ├── test_tag.py │ │ │ └── timeout.py │ ├── doc │ │ ├── README.md │ │ └── doxygen.conf │ ├── gen_manifest.py │ ├── oeqa │ │ ├── runtime │ │ │ ├── __init__.py │ │ │ ├── appfw │ │ │ │ ├── __init__.py │ │ │ │ ├── test_appfw.py │ │ │ │ └── test_appfw_stability.py │ │ │ ├── bluetooth │ │ │ │ ├── __init__.py │ │ │ │ ├── bluetooth.py │ │ │ │ ├── comm_bt_6lowpan.py │ │ │ │ ├── comm_bt_6lowpan_mnode.py │ │ │ │ ├── comm_bt_command.py │ │ │ │ ├── comm_bt_command_mnode.py │ │ │ │ ├── comm_bt_stability.py │ │ │ │ └── files │ │ │ │ │ ├── bt_get_name.exp │ │ │ │ │ ├── bt_list_paired_device.exp │ │ │ │ │ ├── bt_pair_master.exp │ │ │ │ │ ├── bt_pair_slave_on_iot.exp │ │ │ │ │ ├── bt_scan.exp │ │ │ │ │ ├── discoverable_off.exp │ │ │ │ │ ├── discoverable_on.exp │ │ │ │ │ ├── gatt_connect.exp │ │ │ │ │ ├── ostro_qa_rsa │ │ │ │ │ ├── power_off.exp │ │ │ │ │ ├── power_on.exp │ │ │ │ │ └── target_ssh.exp │ │ │ ├── bsp │ │ │ │ ├── __init__.py │ │ │ │ ├── bsp.py │ │ │ │ ├── edison.py │ │ │ │ ├── galileo_gen2.py │ │ │ │ └── kernel_check.py │ │ │ ├── can │ │ │ │ ├── __init__.py │ │ │ │ ├── can.py │ │ │ │ └── comm_can_basic.py │ │ │ ├── ethernet │ │ │ │ ├── __init__.py │ │ │ │ ├── comm_ethernet.py │ │ │ │ └── files │ │ │ │ │ └── ipv6_ssh.exp │ │ │ ├── graphics │ │ │ │ ├── __init__.py │ │ │ │ └── test_enable_Intel_Linux_Graphics_lib.py │ │ │ ├── iotivity │ │ │ │ ├── __init__.py │ │ │ │ ├── files │ │ │ │ │ └── group_client.exp │ │ │ │ ├── iotvt_integration.py │ │ │ │ ├── iotvt_integration_mnode.py │ │ │ │ └── iotvt_wifi.py │ │ │ ├── misc │ │ │ │ ├── __init__.py │ │ │ │ └── scm.py │ │ │ ├── nodejs │ │ │ │ ├── README.md │ │ │ │ ├── __init__.py │ │ │ │ ├── apprt_nodejs_runtime.py │ │ │ │ ├── apprt_nodejs_runtime_log_parser.py │ │ │ │ ├── bleno.py │ │ │ │ ├── coap.py │ │ │ │ ├── crypto_api.py │ │ │ │ ├── files │ │ │ │ │ ├── coap │ │ │ │ │ │ └── coap.js │ │ │ │ │ ├── iotivityNode │ │ │ │ │ │ └── single_suite.json │ │ │ │ │ ├── mqtt │ │ │ │ │ │ └── mqtt.js │ │ │ │ │ ├── noderuntime │ │ │ │ │ │ ├── apprt_nodejs_runtime_config │ │ │ │ │ │ ├── blacklist │ │ │ │ │ │ └── crypto_api_tc_list │ │ │ │ │ ├── restapis │ │ │ │ │ │ ├── nodeunit_test_api_oic_d.js │ │ │ │ │ │ ├── nodeunit_test_api_oic_p.js │ │ │ │ │ │ ├── nodeunit_test_api_oic_res.js │ │ │ │ │ │ └── nodeunit_test_api_system.js │ │ │ │ │ └── solettaplatform │ │ │ │ │ │ └── getresult.js │ │ │ │ ├── get_source.py │ │ │ │ ├── iotivity_node_get_version_package_file.py │ │ │ │ ├── iotivity_node_upstream.py │ │ │ │ ├── iotivity_node_upstream_parser_log.py │ │ │ │ ├── mqtt.py │ │ │ │ ├── nodejs_remove_blacklist_tests.py │ │ │ │ ├── rest_apis.py │ │ │ │ ├── soletta_gpio_api_upstream.py │ │ │ │ ├── soletta_i2c_api_upstream.py │ │ │ │ ├── soletta_platform_service_upstream.py │ │ │ │ ├── soletta_platform_service_upstream_parser_log.py │ │ │ │ ├── soletta_pwm_api_upstream.py │ │ │ │ ├── soletta_setup_test_env_device.py │ │ │ │ ├── soletta_spi_api_upstream.py │ │ │ │ ├── soletta_uart_api_upstream.py │ │ │ │ ├── update_setup_suite_js.py │ │ │ │ └── update_suite_js.py │ │ │ ├── pnp │ │ │ │ ├── __init__.py │ │ │ │ ├── boottime.py │ │ │ │ ├── cpuusage.py │ │ │ │ ├── disksize.py │ │ │ │ ├── iozone.py │ │ │ │ ├── memory.py │ │ │ │ ├── netperf.py │ │ │ │ ├── power.py │ │ │ │ ├── poweroff.py │ │ │ │ └── reboottime.py │ │ │ ├── pythonruntime │ │ │ │ ├── __init__.py │ │ │ │ └── apprt_python_runtime.py │ │ │ ├── sanity │ │ │ │ ├── __init__.py │ │ │ │ ├── apprt_iotivity_node.py │ │ │ │ ├── apprt_java.py │ │ │ │ ├── apprt_nodejs.py │ │ │ │ ├── apprt_python.py │ │ │ │ ├── apprt_restapi.py │ │ │ │ ├── baseos.py │ │ │ │ ├── comm_btcheck.py │ │ │ │ ├── comm_managerdaemon.py │ │ │ │ ├── comm_nfcdaemon.py │ │ │ │ ├── comm_ssh.py │ │ │ │ ├── comm_wifi_connect.py │ │ │ │ ├── files │ │ │ │ │ ├── AppRtTestJavaHelloWorld.class │ │ │ │ │ ├── AppRtTestJavaHelloWorld.java │ │ │ │ │ ├── AppRtTestJavaX11Disabled.class │ │ │ │ │ ├── AppRtTestJavaX11Disabled.java │ │ │ │ │ ├── apprt_test_iotivity_node.js │ │ │ │ │ ├── apprt_test_nodejs_helloworld.js │ │ │ │ │ ├── apprt_test_python_file.py │ │ │ │ │ ├── apprt_test_python_helloworld.py │ │ │ │ │ ├── apprt_test_python_stdout.py │ │ │ │ │ └── config.ini │ │ │ │ ├── iotivity.py │ │ │ │ ├── mraa_hello.py │ │ │ │ └── reboot.py │ │ │ ├── security │ │ │ │ ├── __init__.py │ │ │ │ ├── app_data_protection.py │ │ │ │ ├── app_impersonation.py │ │ │ │ ├── appmemoryprotection.py │ │ │ │ ├── ca_certificate.py │ │ │ │ ├── dac_config.py │ │ │ │ ├── firewall_rules.py │ │ │ │ └── openssl.py │ │ │ ├── sensor │ │ │ │ ├── Connector.py │ │ │ │ ├── EnvirSetup.py │ │ │ │ ├── __init__.py │ │ │ │ ├── config │ │ │ │ │ ├── powerDiablo │ │ │ │ │ ├── sensorPin.ini │ │ │ │ │ ├── sol-flow-intel-edison-rev-c.json │ │ │ │ │ ├── sol-flow-intel-galileo-rev-g.json │ │ │ │ │ └── sol-flow-intel-minnow-max-linux_gt_3_17.json │ │ │ │ ├── test_accel_bma180.py │ │ │ │ ├── test_accel_bma222e.py │ │ │ │ ├── test_accel_bma250.py │ │ │ │ ├── test_accel_bma255.py │ │ │ │ ├── test_accel_lis2dh.py │ │ │ │ ├── test_accel_lis3dh.py │ │ │ │ ├── test_accel_mma7455.py │ │ │ │ ├── test_adc_ads7955.py │ │ │ │ ├── test_adc_int3495.py │ │ │ │ ├── test_color_isl29125.py │ │ │ │ ├── test_color_tcs3414cs.py │ │ │ │ ├── test_color_tcs34725.py │ │ │ │ ├── test_gyro_l3g4200.py │ │ │ │ ├── test_gyro_lsm330dlc.py │ │ │ │ ├── test_gyro_mpu6050.py │ │ │ │ ├── test_gyro_mpu6050_4_hrs.py │ │ │ │ ├── test_gyro_mpu9250.py │ │ │ │ ├── test_humidity_si7021.py │ │ │ │ ├── test_light_bh1750.py │ │ │ │ ├── test_light_tsl2561.py │ │ │ │ ├── test_light_tsl2561_4_hrs.py │ │ │ │ ├── test_light_vcnl4000.py │ │ │ │ ├── test_magnet_ak8975.py │ │ │ │ ├── test_magnet_hmc5883.py │ │ │ │ ├── test_magnet_hmc5983.py │ │ │ │ ├── test_magnet_lsm303.py │ │ │ │ ├── test_magnet_mag3110.py │ │ │ │ ├── test_pressure_bmp280.py │ │ │ │ ├── test_pressure_lps331ap.py │ │ │ │ ├── test_pressure_mpl115.py │ │ │ │ ├── test_pressure_mpl3115.py │ │ │ │ ├── test_sensor_with_high_cpu_consumption.py │ │ │ │ ├── test_temperature_bmp280.py │ │ │ │ ├── test_temperature_lps331ap.py │ │ │ │ ├── test_temperature_mpl115.py │ │ │ │ ├── test_temperature_mpl3115.py │ │ │ │ └── test_temperature_tmp006.py │ │ │ ├── soletta │ │ │ │ ├── __init__.py │ │ │ │ ├── files │ │ │ │ │ └── soletta-stability.fbp │ │ │ │ ├── soletta.py │ │ │ │ ├── soletta_auto.py │ │ │ │ ├── soletta_dev_app.py │ │ │ │ └── soletta_stability.py │ │ │ ├── wifi │ │ │ │ ├── __init__.py │ │ │ │ ├── comm_wifi_connect.py │ │ │ │ ├── comm_wifi_mnode.py │ │ │ │ ├── comm_wifi_stability.py │ │ │ │ ├── files │ │ │ │ │ ├── config.ini │ │ │ │ │ ├── create_1000_files.sh │ │ │ │ │ ├── ssh_to.exp │ │ │ │ │ ├── wifi_connect.exp │ │ │ │ │ └── wifi_hidden_connect.exp │ │ │ │ └── wifi.py │ │ │ └── zigbee │ │ │ │ ├── __init__.py │ │ │ │ ├── comm_zigbee_basic.py │ │ │ │ ├── comm_zigbee_cc2520.py │ │ │ │ ├── comm_zigbee_mnode.py │ │ │ │ ├── files │ │ │ │ ├── izchat_receive.exp │ │ │ │ └── izchat_send.exp │ │ │ │ └── zigbee.py │ │ └── utils │ │ │ ├── __init__.py │ │ │ ├── case_interface.py │ │ │ └── helper.py │ ├── runtest.py │ └── xmlrunner │ │ ├── LICENSE │ │ ├── PKG-INFO │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── builder.py │ │ ├── extra │ │ ├── __init__.py │ │ └── djangotestrunner.py │ │ ├── result.py │ │ ├── runner.py │ │ ├── unittest.py │ │ └── version.py ├── recipes-core │ └── packagegroups │ │ └── packagegroup-qa-tests.bb ├── recipes-devtools │ └── memuse │ │ └── memuse_git.bb └── recipes-test │ ├── appfw-test-app │ ├── appfw-test-app.bb │ └── files │ │ ├── COPYING.MIT │ │ ├── manifest │ │ └── wrapperapp │ ├── bad-groups-app │ ├── bad-groups-app.bb │ └── files │ │ ├── COPYING.MIT │ │ ├── Makefile.am │ │ ├── aclocal.m4 │ │ ├── bootstrap │ │ ├── build-aux │ │ ├── shave-libtool.in │ │ └── shave.in │ │ ├── configure.ac │ │ ├── m4 │ │ ├── libtool.m4 │ │ ├── ltoptions.m4 │ │ ├── ltsugar.m4 │ │ ├── ltversion.m4 │ │ ├── lt~obsolete.m4 │ │ └── shave.m4 │ │ └── src │ │ ├── Makefile.am │ │ ├── bad-groups.c │ │ └── manifest.in │ ├── ble-tool │ └── bluez5_%.bbappend │ ├── hello-bundle-a │ ├── files │ │ ├── hello-bundle-a.c │ │ └── hello-bundle-c.c │ └── hello-bundle-a.bb │ ├── hello-bundle-b │ ├── files │ │ └── hello-bundle-b.c │ └── hello-bundle-b.bb │ ├── hello-bundle-s │ ├── files │ │ └── hello-bundle-s.c │ └── hello-bundle-s.bb │ ├── hello-host │ ├── files │ │ ├── hello.c │ │ └── run-ptest │ ├── hello-host.bb │ └── hello-host.bbappend │ ├── hello │ ├── files │ │ └── hello.c │ ├── hello.bb │ └── hello.bbappend │ ├── mraa-test │ ├── files │ │ └── hello_mraa.c │ ├── mraa-test_1.0.0.bb │ └── mraa-test_1.0.0.bbappend │ ├── openmp-app │ ├── openmp-app.bb │ └── openmp-app │ │ └── openmp-app.c │ ├── read-map │ ├── files │ │ └── read-map.c │ ├── read-map_1.0.0.0.bb │ └── read-map_1.0.0.0.bbappend │ ├── shm-util │ ├── files │ │ └── shm-util.c │ ├── shm-util_1.0.0.0.bb │ └── shm-util_1.0.0.0.bbappend │ └── systemd │ └── systemd_%.bbappend ├── meta-java ├── .gitignore ├── COPYING.MIT ├── README ├── classes │ ├── java-library.bbclass │ ├── java-native.bbclass │ └── java.bbclass ├── conf │ └── layer.conf ├── licenses │ ├── AMD │ ├── CDS │ ├── CUP │ ├── JLEX │ ├── RXTXv2.1 │ └── SUN ├── recipes-core │ ├── ant │ │ ├── ant-native_1.8.1.bb │ │ └── files │ │ │ └── ant │ ├── antlr │ │ ├── antlr_2.7.7.bb │ │ └── files │ │ │ └── runantlr │ ├── base-files │ │ └── base-files_3.0.14.bbappend │ ├── bcel │ │ └── bcel_5.2.bb │ ├── cacao │ │ ├── cacao-1.6.1 │ │ │ ├── cacao-1.6.1-do-not-rely-on-absolute-paths.patch │ │ │ └── system-boehm-gc.patch │ │ ├── cacao-initial-native_0.98.bb │ │ ├── cacao_1.6.1.bb │ │ └── files │ │ │ ├── cacao-0.9.8-do-not-rely-on-absolute-paths.patch │ │ │ ├── cacao-0.9.8-initial-fix-gc-undefined-behaviour.patch │ │ │ ├── cacao-0.98-initial.patch │ │ │ └── disable_hw_exceptions.patch │ ├── classpath │ │ ├── classpath-0.93 │ │ │ ├── autotools.patch │ │ │ └── miscompilation.patch │ │ ├── classpath-0.99 │ │ │ ├── autotools.patch │ │ │ ├── ecj_java_dir.patch │ │ │ ├── fix-gmp.patch │ │ │ ├── freetype2.patch │ │ │ ├── miscompilation.patch │ │ │ ├── sun-security-getproperty.patch │ │ │ ├── toolwrapper-exithook.patch │ │ │ └── use_libdir.patch │ │ ├── classpath-initial-native_0.93.bb │ │ ├── classpath-native.inc │ │ ├── classpath-native_0.99.bb │ │ ├── classpath.inc │ │ └── classpath_0.99.bb │ ├── classpathx │ │ ├── gnujaf-1.1.1 │ │ │ ├── MimeType-symbols-fix.patch │ │ │ └── datadir_java.patch │ │ ├── gnujaf_1.1.1.bb │ │ ├── gnumail-1.1.2 │ │ │ ├── datadir_java.patch │ │ │ └── fix_makefile_race_condition.patch │ │ ├── gnumail_1.1.2.bb │ │ ├── inetlib-1.1.1 │ │ │ ├── datadir_java.patch │ │ │ └── inetlib-missing-dependency-for-util_classes.patch │ │ └── inetlib_1.1.1.bb │ ├── cup │ │ ├── cup_0.10k.bb │ │ └── files │ │ │ └── cup │ ├── ecj │ │ ├── ecj-bootstrap-native.bb │ │ ├── ecj-initial-native.bb │ │ ├── files │ │ │ ├── ecj-initial.in │ │ │ └── ecj.in │ │ ├── libecj-bootstrap-native_3.6.2.bb │ │ └── libecj-bootstrap.inc │ ├── fastjar │ │ ├── fastjar.inc │ │ ├── fastjar │ │ │ └── jartool.patch │ │ └── fastjar_0.98.bb │ ├── icedtea │ │ ├── icedtea7-native.inc │ │ ├── icedtea7-native_2.1.3.bb │ │ ├── openjdk-7-03b147 │ │ │ ├── allow-headless-build.patch │ │ │ ├── build-hacks-native.patch │ │ │ ├── disable-library-checks.patch │ │ │ ├── fix-checksums.patch │ │ │ ├── icedtea-CVE-2014-1876-unpack.patch │ │ │ ├── icedtea-change-to-gdb-debug-format.patch │ │ │ ├── icedtea-corba-parallel-make.patch │ │ │ ├── icedtea-disable-sun.applet-for-tools-in-headless.patch │ │ │ ├── icedtea-disable-x11-in-headless.patch │ │ │ ├── icedtea-ecj-disable-compilation.patch │ │ │ ├── icedtea-flags.patch │ │ │ ├── icedtea-hotspot-fix-undefined-behaviour.patch │ │ │ ├── icedtea-hotspot-make-arch-sane-for-x86.patch │ │ │ ├── icedtea-jdk-sane-x86-arch.patch │ │ │ ├── icedtea-jdk-unzip.patch │ │ │ ├── icedtea-makefile-unzip.patch │ │ │ ├── icedtea-openjdk-remove-currency-data-generation-expi.patch │ │ │ ├── icedtea-sane-x86-arch-name.patch │ │ │ ├── icedtea-unbreak-float.patch │ │ │ ├── icedtea-x11_extension_cleanup.patch │ │ │ ├── jaxws_fix_NullPointerException.patch │ │ │ ├── sigsegv.patch │ │ │ └── timezoneszip.patch │ │ └── openjdk-7-release-03b147.inc │ ├── jacl │ │ └── jacl_1.4.1.bb │ ├── jakarta-commons │ │ ├── commons-beanutils_1.8.0.bb │ │ ├── commons-cli_1.1.bb │ │ ├── commons-codec_1.3.bb │ │ ├── commons-collections3_3.2.1.bb │ │ ├── commons-collections_2.1.1.bb │ │ ├── commons-configuration_1.5.bb │ │ ├── commons-digester_1.8.bb │ │ ├── commons-discovery_0.4.bb │ │ ├── commons-el_1.0.bb │ │ ├── commons-fileupload_1.2.1.bb │ │ ├── commons-httpclient_3.1.bb │ │ ├── commons-io_1.4.bb │ │ ├── commons-jxpath_1.3.bb │ │ ├── commons-lang_2.4.bb │ │ ├── commons-logging_1.1.1.bb │ │ ├── commons-net_1.4.1.bb │ │ ├── commons-pool_1.4.bb │ │ └── jakarta-commons.inc │ ├── jakarta-libs │ │ ├── avalon-framework-api_4.3.bb │ │ ├── bsf_2.4.0.bb │ │ ├── log4j1.2_1.2.17.bb │ │ ├── logkit_1.2.2.bb │ │ ├── oro_2.0.8.bb │ │ ├── poi_3.0.bb │ │ └── regexp_1.5.bb │ ├── jamvm │ │ ├── files │ │ │ ├── java │ │ │ └── java-initial │ │ ├── jamvm-1.4.5 │ │ │ ├── jamvm-initial.patch │ │ │ └── libffi.patch │ │ ├── jamvm-initial-native_1.4.5.bb │ │ ├── jamvm.inc │ │ ├── jamvm │ │ │ ├── jamvm-jni_h-noinst.patch │ │ │ ├── jamvm-minmax-heap.patch │ │ │ └── libffi.patch │ │ └── jamvm_git.bb │ ├── javasqlite │ │ ├── files │ │ │ └── 0001-fix-errors-during-cross-compile.patch │ │ └── javasqlite_20150419.bb │ ├── jcraft │ │ ├── jsch_0.1.40.bb │ │ └── jzlib_1.0.7.bb │ ├── jdepend │ │ └── jdepend_2.9.1.bb │ ├── jikes │ │ ├── files │ │ │ └── javac.jikes │ │ ├── jikes-initial-native.bb │ │ └── jikes_1.22.bb │ ├── jlex │ │ ├── files │ │ │ └── jlex │ │ └── jlex_1.2.6.bb │ ├── junit │ │ ├── junit4_4.3.1.bb │ │ └── junit_3.8.2.bb │ ├── libmatthew │ │ ├── files │ │ │ └── Makefile-0.7.patch │ │ ├── libmatthew.inc │ │ └── libmatthew_0.8.bb │ ├── openjdk │ │ ├── openjdk-7-common.inc │ │ ├── openjdk-7_99b00-2.6.5.bb │ │ ├── openjdk-8-common.inc │ │ ├── openjdk-8-cross.inc │ │ ├── openjdk-8-native.inc │ │ ├── openjdk-8-native_102b14.bb │ │ ├── openjdk-8-release-102b14.inc │ │ ├── openjdk-8_102b14.bb │ │ ├── openjdk-common.inc │ │ ├── openjdk-postinst.inc │ │ ├── openjre-8_102b14.bb │ │ ├── patches-openjdk-7 │ │ │ ├── build-hacks.patch │ │ │ ├── fix_hotspot_crosscompile.patch │ │ │ ├── icedtea-crosscompile-fix.patch │ │ │ ├── icedtea-dtrace-std_h.patch │ │ │ ├── icedtea-jdk-nio-use-host-cc.patch │ │ │ ├── icedtea-jdk-rmi-crosscompile.patch │ │ │ ├── icedtea-jdk-unzip.patch │ │ │ ├── icedtea-makefile-unzip.patch │ │ │ ├── icedtea-xawt-crosscompile-fix.patch │ │ │ ├── icedtea-zero-hotspotfix.patch │ │ │ └── jvm.cfg │ │ └── patches-openjdk-8 │ │ │ ├── LICENSE │ │ │ ├── dont-expect-fqpn-for-make.patch │ │ │ ├── filter-aclocal-copy-too.patch │ │ │ ├── jvm.cfg │ │ │ ├── openjdk8-add-missing-linker-flags.patch │ │ │ ├── openjdk8-find-compiler-fix-env-respect.patch │ │ │ ├── openjdk8-fix-adlc-flags.patch │ │ │ ├── openjdk8-fix-assembler-flag-handling-in-makefile.patch │ │ │ ├── openjdk8-fix-shark-build.patch │ │ │ ├── openjdk8-fix-shark-stdc++11.patch │ │ │ ├── openjdk8-fix-zero-mode-crash.patch │ │ │ ├── openjdk8-no-genx11-in-headless.patch │ │ │ ├── openjdk8-no-unused-deps.patch │ │ │ ├── openjdk8-prevent-debuginfo-in-favour-of-openembedded-package-split.patch │ │ │ ├── openjdk8-restrict-to-staging-dir.patch │ │ │ ├── openjdk8-silence-d_fortify_source-warning.patch │ │ │ └── remove-shell-variables-from-autoheader.patch │ ├── rhino │ │ ├── rhino │ │ │ ├── rhino │ │ │ └── rhino-jsc │ │ └── rhino_1.7r4.bb │ ├── servlet-api │ │ ├── jsp2.0_5.5.26.bb │ │ ├── servlet2.3_4.1.37.bb │ │ └── servlet2.4_5.5.26.bb │ ├── xalan-j │ │ └── xalan-j_2.7.1.bb │ ├── xerces-j │ │ └── xerces-j_2.11.0.bb │ └── xml-commons │ │ ├── dom4j-1.6.1 │ │ └── debian.patch │ │ ├── dom4j_1.6.1.bb │ │ ├── jaxen_1.1.1.bb │ │ ├── jaxme_0.5.2.bb │ │ ├── jaxp1.3_1.4.01.bb │ │ ├── jdom_1.1.bb │ │ ├── xml-commons-resolver1.1_1.2.bb │ │ ├── xom-1.1 │ │ └── 04_remove_sun_import.patch │ │ ├── xom_1.1.bb │ │ ├── xpp2_2.1.10.bb │ │ └── xpp3_1.1.3.4.O.bb ├── recipes-extended │ ├── dbus │ │ └── dbus-java_2.7.bb │ ├── hsqldb │ │ └── hsqldb_1.8.0.10.bb │ ├── rxtx │ │ ├── files │ │ │ ├── 0001-Support-Freescale-i.MX-serial-ports.patch │ │ │ ├── MonitorThread-daemon.patch │ │ │ ├── fhs_lock_buffer_overflow_fix.patch │ │ │ ├── fix_snprintf.patch │ │ │ ├── format_security.patch │ │ │ ├── kfreebsd_libpthread.patch │ │ │ ├── kfreebsd_port.patch │ │ │ ├── multiple_property_dirs.patch │ │ │ ├── original_debian_changes.patch │ │ │ ├── port_to_hurd.patch │ │ │ ├── sys_io_h_check.patch │ │ │ ├── ttyACM_port.patch │ │ │ ├── uninstall_target.patch │ │ │ ├── usb_38400.patch │ │ │ └── zsystem_init_exception.patch │ │ └── rxtx_2.2.0.bb │ └── xmlpull │ │ └── xmlpull_1.1.3.4c.bb └── recipes-images │ └── images │ └── java-test-image.bb ├── meta-oic ├── COPYING ├── README ├── conf │ └── layer.conf ├── recipes-apps │ ├── iotivity-sensorboard │ │ ├── files │ │ │ ├── 0001-Build-Use-LDFLAGS-variable-from-env-and-add-pthread-.patch │ │ │ └── iotivity-sensorboard.tar.gz │ │ └── iotivity-sensorboard_1.0.0.bb │ └── iotivity-simple-client │ │ ├── files │ │ ├── 0001-build-Use-LDFLAGS-variable-from-env.patch │ │ └── iotivity-simple-client.tar.bz2 │ │ └── iotivity-simple-client_1.1.0.bb ├── recipes-core │ ├── iotivity │ │ ├── files │ │ │ ├── arch.patch │ │ │ ├── gcc5.patch │ │ │ ├── gcc6.patch │ │ │ ├── hippomocks_mips_patch │ │ │ └── yocto_paths.patch │ │ ├── iotivity_1.0.0.bb │ │ ├── iotivity_1.0.1.bb │ │ ├── iotivity_1.1.0.bb │ │ └── iotivity_1.1.1.bb │ └── packagegroups │ │ └── packagegroup-iotivity.bb └── recipes-kernel │ └── linux │ ├── files │ └── bluetooth.cfg │ └── linux-yocto_3.19.bbappend ├── meta-openembedded ├── .gitignore ├── COPYING.MIT ├── README ├── contrib │ ├── oe-stylize.py │ └── pw-am.sh ├── meta-efl │ ├── COPYING.MIT │ ├── README │ ├── classes │ │ ├── e-base.bbclass │ │ ├── e.bbclass │ │ └── efl.bbclass │ ├── conf │ │ ├── distro │ │ │ └── include │ │ │ │ └── efl-from-svn-recipes.inc │ │ └── layer.conf │ ├── recipes-core │ │ └── meta │ │ │ └── meta-toolchain-efl.bb │ ├── recipes-devtools │ │ └── python │ │ │ ├── python-edbus.inc │ │ │ ├── python-edbus_1.7.0.bb │ │ │ ├── python-efl.inc │ │ │ ├── python-efl_1.15.0.bb │ │ │ └── python-efl_git.bb │ ├── recipes-efl │ │ ├── e17 │ │ │ ├── cpu │ │ │ │ └── configure.patch │ │ │ ├── cpu_svn.bb │ │ │ ├── diskio_svn.bb │ │ │ ├── e-module.inc │ │ │ ├── e-tasks │ │ │ │ └── 0001-dbus-stuff-Convert-to-eldbus.patch │ │ │ ├── e-tasks_git.bb │ │ │ ├── e-wm-theme-b-and-w_svn.bb │ │ │ ├── e-wm-theme-illume-efenniht │ │ │ │ └── LICENSE │ │ │ ├── e-wm-theme-illume-efenniht_svn.bb │ │ │ ├── e-wm.inc │ │ │ ├── e-wm │ │ │ │ ├── 0001-Fix-incorrect-message-type.patch │ │ │ │ ├── 0001-configure.ac-add-foreign.patch │ │ │ │ ├── applications.menu │ │ │ │ └── enlightenment_start.oe │ │ │ ├── e-wm_0.18.8.bb │ │ │ ├── e-wm_0.19.10.bb │ │ │ ├── e-wm_git.bb │ │ │ ├── edje-viewer_svn.bb │ │ │ ├── elbow_git.bb │ │ │ ├── elfe_git.bb │ │ │ ├── elmdentica │ │ │ │ └── configure.patch │ │ │ ├── elmdentica_svn.bb │ │ │ ├── emprint_svn.bb │ │ │ ├── enjoy │ │ │ │ ├── 0001-always-use-position-as-percent-and-define-a-1-second.patch │ │ │ │ └── configure.patch │ │ │ ├── enjoy_git.bb │ │ │ ├── ephoto │ │ │ │ └── configure.patch │ │ │ ├── ephoto_svn.bb │ │ │ ├── exalt-client │ │ │ │ └── configure.patch │ │ │ ├── exalt-client_svn.bb │ │ │ ├── exalt_svn.bb │ │ │ ├── exquisite-theme-illume.bb │ │ │ ├── exquisite-theme-illume │ │ │ │ └── LICENSE │ │ │ ├── exquisite │ │ │ │ ├── exquisite-init │ │ │ │ └── splashfuncs │ │ │ ├── exquisite_svn.bb │ │ │ ├── flame │ │ │ │ └── configure.patch │ │ │ ├── flame_svn.bb │ │ │ ├── forecasts │ │ │ │ └── configure.patch │ │ │ ├── forecasts_svn.bb │ │ │ ├── illume-keyboards-shr │ │ │ │ ├── 0001-Makefile-update-KEYBOARDS_DIR-for-new-illume2.patch │ │ │ │ └── LICENSE │ │ │ ├── illume-keyboards-shr_git.bb │ │ │ ├── news_svn.bb │ │ │ ├── places │ │ │ │ └── configure.patch │ │ │ ├── places_svn.bb │ │ │ ├── rage_svn.bb │ │ │ ├── rain │ │ │ │ └── configure.patch │ │ │ ├── rain_svn.bb │ │ │ ├── screenshot │ │ │ │ └── screenshot-fix-mkinstalldirs.patch │ │ │ ├── screenshot_svn.bb │ │ │ ├── terminology.inc │ │ │ ├── terminology_0.9.1.bb │ │ │ ├── uptime │ │ │ │ └── configure.patch │ │ │ ├── uptime_svn.bb │ │ │ └── waker │ │ │ │ └── 0001-waker-remove-old-ecore_string_init-and-ecore_string_.patch │ │ ├── efl │ │ │ ├── azy_svn.bb │ │ │ ├── e-wm-illume-dict-pl_git.bb │ │ │ ├── ecore │ │ │ │ └── fix-ecore-fb-initialization.patch │ │ │ ├── edb_svn.bb │ │ │ ├── edbus.inc │ │ │ ├── edbus_1.7.9.bb │ │ │ ├── edje-fpu.inc │ │ │ ├── efl.inc │ │ │ ├── efl │ │ │ │ ├── 0001-configure.ac-Don-t-check-for-Xprint-extension.patch │ │ │ │ ├── 0001-evas_3d-Add-Eet.h-includes.patch │ │ │ │ └── 0002-evas_3d-Add-Eet.h-includes.patch │ │ │ ├── efl_1.15.1.bb │ │ │ ├── elementary-theme-efenniht │ │ │ │ └── LICENSE │ │ │ ├── elementary-theme-efenniht_svn.bb │ │ │ ├── elementary.inc │ │ │ ├── elementary │ │ │ │ └── 0001-Makefile-Use-elementary_codegen-defined-in-configure.patch │ │ │ ├── elementary_1.15.1.bb │ │ │ ├── emotion-generic-players.inc │ │ │ ├── emotion-generic-players_1.15.0.bb │ │ │ ├── engrave_svn.bb │ │ │ ├── entrance │ │ │ │ ├── 0001-pam-use-common-auth-instead-of-system-auth.patch │ │ │ │ └── entrance.service │ │ │ ├── entrance_svn.bb │ │ │ ├── epdf │ │ │ │ ├── 0001-remove-antialias-functions-poppler-has-dropped-them-.patch │ │ │ │ └── 0002-epdf_poppler_postscript.cpp-fix-build-for-poppler-AP.patch │ │ │ ├── epdf_svn.bb │ │ │ ├── evas-generic-loaders.inc │ │ │ ├── evas-generic-loaders_1.15.0.bb │ │ │ ├── expedite.inc │ │ │ ├── expedite_1.7.9.bb │ │ │ ├── expedite_git.bb │ │ │ ├── imlib2_git.bb │ │ │ ├── libeflvala │ │ │ │ └── disable.eina.test.patch │ │ │ ├── libeflvala_svn.bb │ │ │ └── libeweather_svn.bb │ │ ├── packagegroups │ │ │ ├── packagegroup-efl-sdk.bb │ │ │ ├── packagegroup-efl-sdk.inc │ │ │ ├── packagegroup-efl-standalone-sdk-target.bb │ │ │ └── packagegroup-x11-illume.bb │ │ └── webkit │ │ │ ├── webkit-efl.inc │ │ │ ├── webkit-efl │ │ │ ├── 0001-OptionsCommon.cmake-don-t-mix-CXX_FLAGS-into-C_FLAGS.patch │ │ │ ├── 0002-WebKitHelpers.cmake-Add-Wno-error-deprecated-declara.patch │ │ │ ├── 0003-FEBlendNEON.h-fix-missing-semicolon.patch │ │ │ ├── 0004-Fix-the-build-with-EFL-1.12-https-bugs.webkit.org-sh.patch │ │ │ ├── 0005-Fix-the-build-with-cmake-3.patch │ │ │ └── 0006-OptionsEfl.cmake-Fix-build-with-newer-CMake-3.4.patch │ │ │ └── webkit-efl_1.11.0.bb │ ├── recipes-multimedia │ │ └── lightmediascanner │ │ │ ├── files │ │ │ └── id3-plugin-support-out-of-tree-build.patch │ │ │ └── lightmediascanner_0.5.1.bb │ └── recipes-navigation │ │ └── mcnavi │ │ └── mcnavi_0.3.4.bb ├── meta-filesystems │ ├── COPYING.MIT │ ├── README │ ├── conf │ │ └── layer.conf │ ├── recipes-filesystems │ │ ├── fuse-exfat │ │ │ └── fuse-exfat_1.2.3.bb │ │ ├── ifuse │ │ │ └── ifuse_1.1.2.bb │ │ ├── logfsprogs │ │ │ └── logfsprogs_git.bb │ │ ├── ntfs-3g-ntfsprogs │ │ │ └── ntfs-3g-ntfsprogs_2013.1.13.bb │ │ ├── owfs │ │ │ ├── owfs │ │ │ │ ├── owhttpd │ │ │ │ └── owserver │ │ │ └── owfs_2.9p1.bb │ │ ├── simple-mtpfs │ │ │ └── simple-mtpfs_git.bb │ │ ├── smbnetfs │ │ │ ├── smbnetfs │ │ │ │ ├── Using-PKG_CHECK_MODULES-to-found-headers-and-libraries.patch │ │ │ │ └── configure.patch │ │ │ └── smbnetfs_git.bb │ │ ├── sshfs-fuse │ │ │ ├── files │ │ │ │ └── 0001-Makefile-fix-path-for-sshfs.1.patch │ │ │ └── sshfs-fuse_2.8.bb │ │ ├── unionfs-fuse │ │ │ └── unionfs-fuse_0.26.bb │ │ └── yaffs2 │ │ │ ├── yaffs2-utils │ │ │ └── makefile-add-ldflags.patch │ │ │ └── yaffs2-utils_git.bb │ ├── recipes-support │ │ ├── fuse │ │ │ ├── files │ │ │ │ ├── 0001-fuse-fix-the-return-value-of-help-option.patch │ │ │ │ ├── aarch64.patch │ │ │ │ ├── fuse.conf │ │ │ │ └── gold-unversioned-symbol.patch │ │ │ └── fuse_2.9.4.bb │ │ └── physfs │ │ │ └── physfs_2.0.3.bb │ └── recipes-utils │ │ ├── aufs-util │ │ ├── aufs-util │ │ │ ├── aufs-util-add-tool-concept-to-Makefile-for-cross-com.patch │ │ │ ├── aufs-util-don-t-strip-executables.patch │ │ │ └── aufs_type.h │ │ └── aufs-util_git.bb │ │ ├── dmapi │ │ ├── dmapi_2.2.12.bb │ │ └── files │ │ │ ├── dmapi_aarch64_configure_support.patch │ │ │ └── remove-install-as-user.patch │ │ ├── exfat-utils │ │ └── exfat-utils_1.2.3.bb │ │ ├── f2fs-tools │ │ ├── f2fs-tools │ │ │ └── 0001-Remove-AC_CHECK_FILE-for-cross-compilation.patch │ │ └── f2fs-tools_1.4.0.bb │ │ ├── xfsdump │ │ ├── files │ │ │ └── remove-install-as-user.patch │ │ └── xfsdump_3.1.4.bb │ │ ├── xfsprogs │ │ ├── files │ │ │ └── link_needed_libs.patch │ │ └── xfsprogs_4.8.0.bb │ │ └── xorriso │ │ └── xorriso_1.4.0.bb ├── meta-gnome │ ├── COPYING.MIT │ ├── README │ ├── conf │ │ └── layer.conf │ ├── recipes-apps │ │ ├── cheese │ │ │ └── cheese_2.30.1.bb │ │ ├── epdfview │ │ │ ├── epdfview │ │ │ │ ├── browser_command.patch │ │ │ │ ├── fix-format.patch │ │ │ │ ├── glib-single-include.patch │ │ │ │ └── swap-colors.patch │ │ │ └── epdfview_0.1.8.bb │ │ ├── gnome-mplayer │ │ │ ├── gmtk_1.0.5.bb │ │ │ └── gnome-mplayer_1.0.5.bb │ │ └── pinpoint │ │ │ └── pinpoint_git.bb │ ├── recipes-connectivity │ │ ├── network-manager-applet │ │ │ └── network-manager-applet_1.4.2.bb │ │ └── obex │ │ │ ├── obexd │ │ │ └── ssize_t_definition.patch │ │ │ └── obexd_0.48.bb │ ├── recipes-devtools │ │ └── glade │ │ │ └── glade3_%.bbappend │ ├── recipes-extended │ │ ├── gparted │ │ │ ├── files │ │ │ │ ├── gparted_polkit │ │ │ │ └── org.yoctoproject.pkexec.run-gparted.policy │ │ │ └── gparted_0.27.0.bb │ │ └── gtk-theme-torturer │ │ │ └── gtk-theme-torturer_git.bb │ ├── recipes-gnome │ │ ├── abiword │ │ │ ├── abiword │ │ │ │ ├── 0001-plugins-aiksaurus-Makefile.am-remove-uncomplete-opti.patch │ │ │ │ └── 0002-Bug-13754-Fix-build-on-gcc-6-default-to-C-11.patch │ │ │ └── abiword_3.0.1.bb │ │ ├── bonobo │ │ │ ├── files │ │ │ │ ├── gcc5.patch │ │ │ │ ├── gtk-doc.m4 │ │ │ │ └── gtk-doc.make │ │ │ ├── libbonobo.inc │ │ │ ├── libbonobo │ │ │ │ ├── 0001-Remove-use-of-G_DISABLE_DEPRECATED.patch │ │ │ │ ├── do-not-use-srcdir-variable.patch │ │ │ │ └── fix-nonliteral-in-string.patch │ │ │ ├── libbonobo_2.32.1.bb │ │ │ └── libbonoboui_2.24.5.bb │ │ ├── dconf │ │ │ └── dconf_0.18.0.bb │ │ ├── desktop-file-utils │ │ │ └── desktop-file-utils_0.18.bb │ │ ├── devilspie │ │ │ ├── devilspie2_0.33.bb │ │ │ └── files │ │ │ │ ├── default.lua │ │ │ │ └── devilspie2.desktop │ │ ├── eds │ │ │ ├── evolution-data-server │ │ │ │ ├── 0001-contact-Replace-the-Novell-sample-contact-with-somet.patch │ │ │ │ ├── 0002-Fix-for-automake-1.12.x.patch │ │ │ │ ├── 0003-Disable-Werror-for-automake.patch │ │ │ │ ├── 0004-configure-Fix-libical-pkg-config-trying-to-use-host-.patch │ │ │ │ ├── 0005-soup-adapt-to-new-libxml2-API-from-2.9.0.patch │ │ │ │ ├── 0006-configure.ac-do-not-overwrite-localedir.patch │ │ │ │ └── iconv-detect.h │ │ │ └── evolution-data-server_git.bb │ │ ├── evince │ │ │ ├── evince │ │ │ │ ├── 0001-help-remove-YELP-macro.patch │ │ │ │ └── 0002-fix-gcc6-errors.patch │ │ │ └── evince_3.18.2.bb │ │ ├── faenza-icon-theme │ │ │ └── faenza-icon-theme_1.3.bb │ │ ├── gcalctool │ │ │ ├── gcalctool │ │ │ │ └── fix-includedir.patch │ │ │ └── gcalctool_5.32.0.bb │ │ ├── gdm │ │ │ ├── gdm │ │ │ │ ├── %gconf-tree.xml │ │ │ │ ├── 0001-Remove-user-switch-applet.patch │ │ │ │ ├── 0002-gdm-user-manager.c-avoid-displaying-system-users-in-.patch │ │ │ │ ├── Default │ │ │ │ ├── cross-xdetection.diff │ │ │ │ ├── gdm │ │ │ │ ├── gdm-pam │ │ │ │ ├── gdm.conf │ │ │ │ ├── gdm.service.in │ │ │ │ └── sysrooted-pkg-config.patch │ │ │ └── gdm_2.32.2.bb │ │ ├── gedit │ │ │ ├── files │ │ │ │ ├── 0001-Remove-help-directory-from-build.patch │ │ │ │ ├── 0001-workaround-void-pointer-arithmetic.patch │ │ │ │ └── 0002-suppress-string-format-literal-warning-to-fix-build-.patch │ │ │ └── gedit_2.30.4.bb │ │ ├── gnome-backgrounds │ │ │ └── gnome-backgrounds_2.32.0.bb │ │ ├── gnome-bluetooth │ │ │ └── gnome-bluetooth_3.18.2.bb │ │ ├── gnome-control-center │ │ │ └── gnome-control-center_2.32.1.bb │ │ ├── gnome-desktop │ │ │ └── gnome-desktop_2.32.1.bb │ │ ├── gnome-disk-utility │ │ │ ├── gnome-disk-utility │ │ │ │ ├── 0001-Add-support-for-DeviceAutomountHint.patch │ │ │ │ ├── 0002-Require-libnotify-0.6.1.patch │ │ │ │ ├── disable-scrollkeeper.patch │ │ │ │ ├── fix-dbus-interfaces.patch │ │ │ │ └── sysrooted-pkg-config.patch │ │ │ └── gnome-disk-utility_2.32.0.bb │ │ ├── gnome-keyring │ │ │ ├── gnome-keyring │ │ │ │ └── egg-asn1x.patch │ │ │ ├── gnome-keyring_2.32.1.bb │ │ │ └── libgnome-keyring_2.32.0.bb │ │ ├── gnome-menus │ │ │ ├── gnome-menus3_3.10.1.bb │ │ │ └── gnome-menus_2.30.5.bb │ │ ├── gnome-mime-data │ │ │ ├── gnome-mime-data │ │ │ │ └── pkgconfig.patch │ │ │ └── gnome-mime-data_2.18.0.bb │ │ ├── gnome-panel │ │ │ ├── gnome-panel │ │ │ │ ├── 0001-Add-gnome-doc-utils.make.patch │ │ │ │ ├── 0001-Fix-build-with-gcc-5.patch │ │ │ │ ├── as-needed.patch │ │ │ │ └── idl-sysroot.patch │ │ │ ├── gnome-panel3_3.0.2.bb │ │ │ └── gnome-panel_2.32.1.bb │ │ ├── gnome-power-manager │ │ │ ├── gnome-power-manager-2.32.0 │ │ │ │ ├── 0001-Makefile.am-don-t-build-help-man.patch │ │ │ │ └── sysrooted-pkg-config.patch │ │ │ └── gnome-power-manager_2.32.0.bb │ │ ├── gnome-session │ │ │ ├── gnome-session │ │ │ │ └── use_G_GINT64_FORMAT.patch │ │ │ └── gnome-session_2.32.1.bb │ │ ├── gnome-settings-daemon │ │ │ ├── files │ │ │ │ └── 0001-Require-libnotify-0.6.0.patch │ │ │ └── gnome-settings-daemon_2.32.1.bb │ │ ├── gnome-system-monitor │ │ │ ├── files │ │ │ │ ├── 0001-Fix-glib-includes.patch │ │ │ │ ├── 0002-src-procman.cpp-include-main-gtkmm.h.patch │ │ │ │ └── Remove-pkg-config-check-for-gnome-icon-theme.patch │ │ │ └── gnome-system-monitor_2.28.2.bb │ │ ├── gnome-vfs │ │ │ ├── gnome-vfs-2.24.4 │ │ │ │ ├── 0001-multiple-Makefile.am-remove-DG_DISABLE_DEPRECATED-to.patch │ │ │ │ ├── do-not-use-srcdir-variable.patch │ │ │ │ ├── gconftool-lossage.patch │ │ │ │ └── gnome-vfs-no-kerberos.patch │ │ │ └── gnome-vfs_2.24.4.bb │ │ ├── gnome │ │ │ ├── gnome-terminal │ │ │ │ └── 0001-Makefile.am-do-not-build-help.patch │ │ │ ├── gnome-terminal_2.30.2.bb │ │ │ ├── libgnomecups │ │ │ │ ├── libgnomecups-0.2.3-cups-1.6.patch │ │ │ │ └── libgnomecups-0.2.3-glib.h.patch │ │ │ ├── libgnomecups_0.2.3.bb │ │ │ ├── libgnomeprint │ │ │ │ ├── 0001-configure-use-pkgconfig-for-freetype.patch │ │ │ │ ├── bison3-support.patch │ │ │ │ ├── fix.includes.patch │ │ │ │ └── freetype.patch │ │ │ └── libgnomeprint_2.18.8.bb │ │ ├── gnumeric │ │ │ ├── gnumeric │ │ │ │ ├── 0001-configure.in-drop-introspection-macros-replace-them-.patch │ │ │ │ └── do-not-use-srcdir.patch │ │ │ └── gnumeric_1.12.0.bb │ │ ├── gthumb │ │ │ ├── files │ │ │ │ ├── 0001-Drop-help-directory-from-build.patch │ │ │ │ └── parallel.patch │ │ │ └── gthumb_2.12.4.bb │ │ ├── gtk-engines │ │ │ ├── files │ │ │ │ ├── glib-2.32.patch │ │ │ │ └── substitute-tests.patch │ │ │ └── gtk-engines_2.20.2.bb │ │ ├── gtksourceview │ │ │ ├── gtksourceview2 │ │ │ │ ├── acinclude.m4 │ │ │ │ ├── gtk-doc.m4 │ │ │ │ ├── gtk-doc.make │ │ │ │ └── suppress-string-format-literal-warning.patch │ │ │ └── gtksourceview2_2.10.5.bb │ │ ├── gvfs │ │ │ └── gvfs_1.28.3.bb │ │ ├── gweather │ │ │ ├── libgweather3_3.0.2.bb │ │ │ └── libgweather_2.30.3.bb │ │ ├── libart-lgpl │ │ │ ├── libart-lgpl │ │ │ │ ├── Makefile.am.patch │ │ │ │ ├── aarch64 │ │ │ │ │ └── art_config.h │ │ │ │ ├── aarch64be │ │ │ │ │ └── art_config.h │ │ │ │ ├── aarch64be_32 │ │ │ │ │ └── art_config.h │ │ │ │ ├── arm │ │ │ │ │ └── art_config.h │ │ │ │ ├── armeb │ │ │ │ │ └── art_config.h │ │ │ │ ├── i386 │ │ │ │ │ └── art_config.h │ │ │ │ ├── i586 │ │ │ │ │ └── art_config.h │ │ │ │ ├── i686 │ │ │ │ │ └── art_config.h │ │ │ │ ├── mips │ │ │ │ │ └── art_config.h │ │ │ │ ├── mips64 │ │ │ │ │ └── art_config.h │ │ │ │ ├── mips64el │ │ │ │ │ └── art_config.h │ │ │ │ ├── mipsel │ │ │ │ │ └── art_config.h │ │ │ │ ├── powerpc │ │ │ │ │ └── art_config.h │ │ │ │ ├── powerpc64 │ │ │ │ │ └── art_config.h │ │ │ │ └── x86_64 │ │ │ │ │ └── art_config.h │ │ │ └── libart-lgpl_2.3.21.bb │ │ ├── libgdata │ │ │ └── libgdata_0.16.1.bb │ │ ├── libgnome │ │ │ ├── libgnome │ │ │ │ └── 0001-libgnome-Makefile.am-allow-deprecated-symbols.patch │ │ │ ├── libgnome_2.32.1.bb │ │ │ ├── libgnomecanvas_2.30.3.bb │ │ │ ├── libgnomekbd_2.32.0.bb │ │ │ ├── libgnomeui │ │ │ │ ├── 0001-suppress-string-format-literal-warning-to-fix-build-.patch │ │ │ │ ├── gnome-stock-pixbufs.h │ │ │ │ └── no-pixbuf-csource.patch │ │ │ └── libgnomeui_2.24.5.bb │ │ ├── libgsf │ │ │ ├── files │ │ │ │ └── 0001-configure.ac-drop-a-copy-paste-of-introspection.m4-m.patch │ │ │ └── libgsf_1.14.29.bb │ │ ├── libgtkstylus │ │ │ ├── files │ │ │ │ └── gtkstylus.sh │ │ │ └── libgtkstylus_0.5.bb │ │ ├── libgtop │ │ │ └── libgtop_2.30.0.bb │ │ ├── libidl │ │ │ ├── libidl-native_0.8.14.bb │ │ │ ├── libidl.inc │ │ │ └── libidl_0.8.14.bb │ │ ├── libwnck │ │ │ ├── libwnck3_3.20.1.bb │ │ │ └── libwnck_2.31.0.bb │ │ ├── libxklavier │ │ │ ├── files │ │ │ │ └── fix-do_installe-failure.patch │ │ │ └── libxklavier_5.4.bb │ │ ├── metacity │ │ │ ├── metacity │ │ │ │ └── remove-yelp-help-rules-var.patch │ │ │ └── metacity_2.34.13.bb │ │ ├── nautilus │ │ │ ├── nautilus │ │ │ │ ├── idl-sysroot.patch │ │ │ │ ├── no-G_DISABLE_DEPRECATED.patch │ │ │ │ └── no-try-run-strftime.diff │ │ │ ├── nautilus3 │ │ │ │ └── no-try-run-strftime.diff │ │ │ ├── nautilus3_3.2.1.bb │ │ │ └── nautilus_2.32.2.bb │ │ ├── orbit2 │ │ │ ├── orbit2 │ │ │ │ ├── 0001-linc2-src-Makefile.am-fix-build-with-glib-2.36.patch │ │ │ │ ├── 0002-Use-AM_CPPFLAGS-instead-of-INCLUDES-and-fix-problem-.patch │ │ │ │ ├── configure-lossage.patch │ │ │ │ └── pkgconfig-fix.patch │ │ │ └── orbit2_2.14.19.bb │ │ ├── pimlico │ │ │ ├── contacts.inc │ │ │ ├── contacts │ │ │ │ ├── contacts-conditionally-install-schema.patch │ │ │ │ ├── make-382.patch │ │ │ │ ├── stock_contact.png │ │ │ │ └── stock_person.png │ │ │ ├── contacts_0.9.bb │ │ │ ├── contacts_git.bb │ │ │ ├── dates.inc │ │ │ ├── dates │ │ │ │ ├── 0001-Update-to-new-evolution-data-server-e_source_-color-.patch │ │ │ │ ├── dso_linking_change_build_fix.patch │ │ │ │ ├── make-382.patch │ │ │ │ └── uclibc-NL_TIME_FIRST_WEEKDAY-absent.patch │ │ │ ├── dates_git.bb │ │ │ ├── tasks.inc │ │ │ ├── tasks_0.19.bb │ │ │ └── tasks_git.bb │ │ ├── system-tools │ │ │ ├── system-tools-backends-2.10.2 │ │ │ │ ├── add-angstrom-distro.patch │ │ │ │ └── system-tools-backends │ │ │ └── system-tools-backends_2.10.2.bb │ │ ├── themes │ │ │ ├── gnome-themes │ │ │ │ ├── drop-localedir-override.patch │ │ │ │ └── iconpath-option.patch │ │ │ └── gnome-themes_2.32.1.bb │ │ ├── wv │ │ │ ├── wv-1.2.4 │ │ │ │ ├── 0001-configure-use-foreign-mode-to-avoid-errors-with-miss.patch │ │ │ │ └── pkgconfig.patch │ │ │ └── wv_1.2.4.bb │ │ └── zenity │ │ │ ├── files │ │ │ └── 0001-Makefile.am-don-t-build-help.patch │ │ │ └── zenity_2.32.1.bb │ ├── recipes-support │ │ ├── florence │ │ │ ├── files │ │ │ │ ├── 0001-Fix-glib-includes.patch │ │ │ │ └── fix-no-atspi-compile.patch │ │ │ └── florence_0.5.4.bb │ │ ├── goffice │ │ │ ├── goffice │ │ │ │ ├── 0001-configure.ac-fix-paths-to-introspection-tools.patch │ │ │ │ ├── c99math.patch │ │ │ │ ├── nodolt.patch │ │ │ │ └── pcre-8.30.patch │ │ │ └── goffice_0.10.1.bb │ │ └── tracker │ │ │ ├── files │ │ │ ├── 90tracker │ │ │ ├── tracker-dbus.service │ │ │ ├── tracker-miner-fs.service │ │ │ └── tracker-store.service │ │ │ ├── tracker-0.14.2 │ │ │ ├── 0005-Fix-missing-gobject-introspection-checks.patch │ │ │ ├── enable-sqlite-crosscompile.patch │ │ │ ├── fix-removable-media-detection.patch │ │ │ └── giflib5-support.patch │ │ │ └── tracker_0.14.2.bb │ └── site │ │ ├── arm-64 │ │ └── x86_64-linux ├── meta-gpe │ ├── README │ ├── conf │ │ └── layer.conf │ ├── recipes-graphics │ │ ├── gpe-scap │ │ │ ├── gpe-scap │ │ │ │ ├── 0001-Fix-the-ordering-of-LDADD-options-to-fix-a-compilati.patch │ │ │ │ └── use.libsoup-2.4.patch │ │ │ └── gpe-scap_1.4.bb │ │ ├── libgpewidget │ │ │ ├── libgpewidget │ │ │ │ ├── glib-2.32.patch │ │ │ │ └── pkgconfig.patch │ │ │ └── libgpewidget_0.117.bb │ │ └── minilite │ │ │ ├── minilite │ │ │ └── makefile-fix.patch │ │ │ └── minilite_0.50.bb │ └── recipes-support │ │ └── fbreader │ │ ├── fbreader-0.12.10 │ │ ├── Makefile.patch │ │ ├── fix-cflags-fribidi.patch │ │ ├── fix-return-code-gcc6.patch │ │ └── gcc45.patch │ │ ├── fbreader_0.12.10.bb │ │ ├── fbreader_git.bb │ │ └── files │ │ └── 0001-Fix-installation-of-the-icons-when-RESOLUTION-is-set.patch ├── meta-initramfs │ ├── COPYING.MIT │ ├── README │ ├── classes │ │ └── klibc.bbclass │ ├── conf │ │ └── layer.conf │ ├── recipes-bsp │ │ ├── images │ │ │ ├── initramfs-debug-image.bb │ │ │ ├── initramfs-kexecboot-image.bb │ │ │ └── initramfs-kexecboot-klibc-image.bb │ │ ├── initrdscripts │ │ │ ├── files │ │ │ │ └── init-debug.sh │ │ │ └── initramfs-debug_1.0.bb │ │ └── kexecboot │ │ │ ├── files │ │ │ ├── 0001-kexecboot-fix-build-when-S-B.patch │ │ │ ├── 0002-kexecboot-fix-configure-warnings.patch │ │ │ ├── 0003-kexecboot-do-not-hardcode-MOUNTPOINT.patch │ │ │ ├── 0004-kexecboot.c-workaround-for-absolute-kernel-and-initr.patch │ │ │ └── 0005-rgb.h-fix-build-with-gcc5.patch │ │ │ ├── kexecboot-cfg │ │ │ └── icon.xpm │ │ │ ├── kexecboot-cfg_0.2.bb │ │ │ └── kexecboot_0.6.bb │ ├── recipes-devtools │ │ ├── dracut │ │ │ └── dracut_git.bb │ │ ├── grubby │ │ │ ├── grubby │ │ │ │ ├── grubby-rename-grub2-editenv-to-grub-editenv.patch │ │ │ │ └── run-ptest │ │ │ └── grubby_8.40.bb │ │ ├── klibc │ │ │ ├── klcc-cross_2.0.4.bb │ │ │ ├── klibc-2.0.4 │ │ │ │ ├── armv4-fix-v4bx.patch │ │ │ │ ├── klcc-consider-sysroot.patch │ │ │ │ ├── klibc-config-eabi.patch │ │ │ │ ├── klibc-linux-libc-dev.patch │ │ │ │ ├── staging.patch │ │ │ │ └── use-env-for-perl.patch │ │ │ ├── klibc-static-utils_2.0.4.bb │ │ │ ├── klibc-utils.inc │ │ │ ├── klibc-utils_2.0.4.bb │ │ │ ├── klibc.inc │ │ │ └── klibc_2.0.4.bb │ │ └── mtd │ │ │ ├── ubi-utils-klibc │ │ │ ├── 0001-Makefile-only-build-ubi-utils.patch │ │ │ ├── 0002-common.mk-for-klibc-CC-is-klcc.patch │ │ │ ├── 0003-libubi.c-add-klibc-specific-fixes.patch │ │ │ ├── 0004-common.h-klibc-fixes-1.patch │ │ │ ├── 0005-common.h-klibc-fixes-2.patch │ │ │ └── 0006-libiniparser-remove-unused-function-needing-float.patch │ │ │ └── ubi-utils-klibc_1.5.1.bb │ └── recipes-kernel │ │ ├── kexec │ │ ├── kexec-tools-klibc-2.0.2 │ │ │ ├── arm_crashdump.patch │ │ │ ├── cflags_static.patch │ │ │ ├── fix-out-of-tree-build.patch │ │ │ ├── ifdown_errno.patch │ │ │ ├── kexec-elf-rel.patch │ │ │ ├── kexec-syscall.patch │ │ │ ├── ppc__lshrdi3.patch │ │ │ ├── purgatory_flags.patch │ │ │ ├── purgatory_string.patch │ │ │ ├── sha256.patch │ │ │ ├── sysconf_nrprocessors.patch │ │ │ ├── x86_basename.patch │ │ │ ├── x86_kexec_test.patch │ │ │ ├── x86_sys_io.patch │ │ │ └── x86_vfscanf.patch │ │ └── kexec-tools-klibc_2.0.2.bb │ │ └── linux │ │ ├── linux-yocto-tiny-kexecboot │ │ └── revert-check-console.patch │ │ └── linux-yocto-tiny-kexecboot_4.4.bb ├── meta-multimedia │ ├── COPYING.MIT │ ├── README │ ├── classes │ │ └── juce.bbclass │ ├── conf │ │ └── layer.conf │ ├── recipes-connectivity │ │ ├── gupnp │ │ │ ├── gssdp.inc │ │ │ ├── gssdp_0.14.8.bb │ │ │ ├── gupnp-av.inc │ │ │ ├── gupnp-av_0.12.6.bb │ │ │ ├── gupnp-dlna_0.9.4.bb │ │ │ ├── gupnp-igd_0.2.2.bb │ │ │ ├── gupnp-tools_0.8.10.bb │ │ │ ├── gupnp.inc │ │ │ └── gupnp_0.20.14.bb │ │ ├── libupnp │ │ │ ├── libupnp │ │ │ │ ├── avoid-redefining-strnlen-and-strndup.patch │ │ │ │ └── sepbuildfix.patch │ │ │ └── libupnp_1.6.19.bb │ │ ├── miniupnpd │ │ │ └── miniupnpd_2.0.bb │ │ └── rygel │ │ │ └── rygel_0.28.2.bb │ ├── recipes-dvb │ │ ├── dvb-apps │ │ │ └── dvb-apps_1.1.1.bb │ │ ├── oscam │ │ │ ├── oscam │ │ │ │ └── respect-cflags.patch │ │ │ └── oscam_svn.bb │ │ └── tvheadend │ │ │ ├── tvheadend │ │ │ ├── 0001-Fix-checks-for-sse2-mmx.patch │ │ │ ├── 0001-Makefile-Ignore-warning-about-wrong-includes.patch │ │ │ ├── 0001-disable-varargs-warning-on-clang.patch │ │ │ ├── 0001-dvr-Use-labs-instead-of-abs.patch │ │ │ └── 0001-hdhomerun-Override-forced-overrdiing-og-CC-STRIP-and.patch │ │ │ └── tvheadend_git.bb │ ├── recipes-mediacentre │ │ └── xbmc │ │ │ ├── xbmc │ │ │ ├── 0001-configure-don-t-run-python-distutils-to-find-STAGING.patch │ │ │ ├── 0002-Revert-fixed-ios-Add-memory-barriers-to-atomic-Add-S.patch │ │ │ ├── 0003-Revert-fixed-ios-Add-memory-barriers-to-cas-assembly.patch │ │ │ ├── 0004-configure-cope-with-ld-is-gold-DISTRO_FEATURE.patch │ │ │ └── configure.in-Avoid-running-code.patch │ │ │ └── xbmc_git.bb │ ├── recipes-mkv │ │ ├── libebml │ │ │ ├── libebml │ │ │ │ ├── ldflags.patch │ │ │ │ └── override-uname.patch │ │ │ └── libebml_1.3.0.bb │ │ ├── libmatroska │ │ │ └── libmatroska_1.4.1.bb │ │ └── mkvtoolnix │ │ │ └── mkvtoolnix_git.bb │ ├── recipes-multimedia │ │ ├── alsa-equal │ │ │ ├── alsa-equal │ │ │ │ ├── 0001-Fix-asneeded.patch │ │ │ │ ├── 0002-Fix-Eq-CAPS-plugin-name.patch │ │ │ │ └── 0003-Fix-mixer.patch │ │ │ └── alsa-equal_0.6.bb │ │ ├── caps │ │ │ ├── caps │ │ │ │ └── Avoid-ambiguity-in-div-invocation.patch │ │ │ └── caps_0.9.24.bb │ │ ├── cdparanoia │ │ │ ├── cdparanoia_10.2.bb │ │ │ └── files │ │ │ │ ├── 0001-Use-DESTDIR-in-install-Makefile-rule.patch │ │ │ │ ├── 0002-interface-remove-C-reserved-keyword.patch │ │ │ │ └── 0003-Fix-missing-shared-object-LDFLAGS.patch │ │ ├── coriander │ │ │ ├── coriander │ │ │ │ └── cross-compile.patch │ │ │ └── coriander_2.0.2.bb │ │ ├── dca │ │ │ └── dcadec_0.2.0.bb │ │ ├── dleyna │ │ │ ├── dleyna-connector-dbus_0.3.0.bb │ │ │ ├── dleyna-core_0.6.0.bb │ │ │ ├── dleyna-renderer_0.6.0.bb │ │ │ ├── dleyna-server_0.6.0.bb │ │ │ ├── media-service-upnp_0.5.0.bb │ │ │ └── renderer-service-upnp_0.3.0.bb │ │ ├── faac │ │ │ ├── faac_1.28.bb │ │ │ └── files │ │ │ │ ├── address-gcc-6-narrowing-errors.patch │ │ │ │ └── build-fix.patch │ │ ├── fluidsynth │ │ │ └── fluidsynth_1.1.6.bb │ │ ├── gstreamer-0.10 │ │ │ ├── gst-ffmpeg-0.10.13 │ │ │ │ ├── 0001-aacdec-check-channel-count.patch │ │ │ │ ├── 0001-alac-fix-nb_samples-order-case.patch │ │ │ │ ├── 0001-alsdec-check-block-length.patch │ │ │ │ ├── 0001-atrac3dec-Check-coding-mode-against-channels.patch │ │ │ │ ├── 0001-avcodec-dsputil-fix-signedness-in-sizeof-comparissio.patch │ │ │ │ ├── 0001-avcodec-msrle-use-av_image_get_linesize-to-calculate.patch │ │ │ │ ├── 0001-avcodec-parser-reset-indexes-on-realloc-failure.patch │ │ │ │ ├── 0001-avcodec-rpza-Perform-pointer-advance-and-checks-befo.patch │ │ │ │ ├── 0001-avcodec-smc-fix-off-by-1-error.patch │ │ │ │ ├── 0001-avformat-mpegtsenc-Check-data-array-size-in-mpegts_w.patch │ │ │ │ ├── 0001-eamad-fix-out-of-array-accesses.patch │ │ │ │ ├── 0001-error-concealment-initialize-block-index.patch │ │ │ │ ├── 0001-error_concealment-Check-that-the-picture-is-not-in-a.patch │ │ │ │ ├── 0001-ffserver-set-oformat.patch │ │ │ │ ├── 0001-h264-correct-ref-count-check-and-limit-fix-out-of-ar.patch │ │ │ │ ├── 0001-h264-set-parameters-from-SPS-whenever-it-changes.patch │ │ │ │ ├── 0001-h264-skip-error-concealment-when-SPS-and-slices-are-.patch │ │ │ │ ├── 0001-h264_sei-Fix-infinite-loop.patch │ │ │ │ ├── 0001-huffyuvdec-Check-init_vlc-return-codes.patch │ │ │ │ ├── 0001-huffyuvdec-Skip-len-0-cases.patch │ │ │ │ ├── 0001-lavf-compute-probe-buffer-size-more-reliably.patch │ │ │ │ ├── 0001-mjpegdec-check-SE.patch │ │ │ │ ├── 0001-pgssubdec-check-RLE-size-before-copying.-Fix-out-of-.patch │ │ │ │ ├── 0001-pngdec-filter-dont-access-out-of-array-elements-at-t.patch │ │ │ │ ├── 0001-qdm2-check-array-index-before-use-fix-out-of-array-a.patch │ │ │ │ ├── 0001-qdm2dec-fix-buffer-overflow.patch │ │ │ │ ├── 0001-roqvideodec-check-dimensions-validity.patch │ │ │ │ ├── 0001-smackerdec-Check-that-the-last-indexes-are-within-th.patch │ │ │ │ ├── 0001-vp3-Copy-all-3-frames-for-thread-updates.patch │ │ │ │ ├── 0001-vp3-fix-oob-read-for-negative-tokens-and-memleaks-on.patch │ │ │ │ ├── 0001-vqavideo-check-chunk-sizes-before-reading-chunks.patch │ │ │ │ ├── 0002-avcodec-mjpegdec-check-bits-per-pixel-for-changes-si.patch │ │ │ │ ├── configure-fix.patch │ │ │ │ ├── gst-ffmpeg-CVE-2013-0855.patch │ │ │ │ ├── gst-ffmpeg-CVE-2013-3674.patch │ │ │ │ ├── gst-ffmpeg-fix-CVE-2011-4352.patch │ │ │ │ ├── gst-ffmpeg-fix-CVE-2014-7933.patch │ │ │ │ ├── gst-ffmpeg-fix-CVE-2014-8542.patch │ │ │ │ ├── gst-ffmpeg-fix-CVE-2014-8543.patch │ │ │ │ ├── gst-ffmpeg-fix-CVE-2014-8544.patch │ │ │ │ ├── gst-ffmpeg-fix-CVE-2014-8545.patch │ │ │ │ ├── gst-ffmpeg-fix-CVE-2014-8546.patch │ │ │ │ ├── gst-ffmpeg-fix-CVE-2014-8547.patch │ │ │ │ ├── gst-ffmpeg-fix-CVE-2014-9318.patch │ │ │ │ ├── gst-ffmpeg-fix-CVE-2014-9603.patch │ │ │ │ ├── h264_qpel_mmx.patch │ │ │ │ ├── libav-9.patch │ │ │ │ ├── libav_e500mc.patch │ │ │ │ ├── libav_e5500.patch │ │ │ │ └── lower-rank.diff │ │ │ ├── gst-ffmpeg_0.10.13.bb │ │ │ ├── gst-fluendo-mp3_0.10.31.bb │ │ │ ├── gst-fluendo-mpegdemux_0.10.85.bb │ │ │ ├── gst-fluendo.inc │ │ │ ├── gst-meta-base_0.10.bb │ │ │ ├── gst-openmax │ │ │ │ ├── gcc_4.6.patch │ │ │ │ └── ptr-array.patch │ │ │ ├── gst-openmax_0.10.1.bb │ │ │ ├── gst-plugins-bad │ │ │ │ └── buffer-overflow-mp4.patch │ │ │ ├── gst-plugins-bad_0.10.23.bb │ │ │ ├── gst-plugins-base-0.10.36 │ │ │ │ ├── 0001-aclocal.m4-don-t-do-crazy-things-to-GLIB_CFLAGS.patch │ │ │ │ ├── audioresample-Fix-build-on-x86-if-emmintrin.h-is-ava.patch │ │ │ │ ├── configure.ac-fix-subparse-plugin.patch │ │ │ │ └── gst-plugins-base-tremor.patch │ │ │ ├── gst-plugins-base_0.10.36.bb │ │ │ ├── gst-plugins-gl │ │ │ │ └── 0001-conditional-gl-framebuffer-undefined-use.patch │ │ │ ├── gst-plugins-gl_0.10.3.bb │ │ │ ├── gst-plugins-good-0.10.31 │ │ │ │ ├── 0001-v4l2-fix-build-with-recent-kernels-the-v4l2_buffer-i.patch │ │ │ │ ├── 0001-v4l2_calls-define-V4L2_CID_HCENTER-and-V4L2_CID_VCEN.patch │ │ │ │ └── 0407-mulawdec-fix-integer-overrun.patch │ │ │ ├── gst-plugins-good_0.10.31.bb │ │ │ ├── gst-plugins-ugly │ │ │ │ ├── 0001-cdio-compensate-for-libcdio-s-recent-cd-text-api-cha.patch │ │ │ │ └── 0002-Fix-opencore-include-paths.patch │ │ │ ├── gst-plugins-ugly_0.10.19.bb │ │ │ ├── gst-plugins.inc │ │ │ ├── gst-rtsp │ │ │ │ └── 0001-change-deprecated-INCLUDES-to-AM_CPPFLAGS-for-automa.patch │ │ │ ├── gst-rtsp_0.10.8.bb │ │ │ ├── gstreamer-0.10.36 │ │ │ │ ├── 0001-baseparse-Fix-self-comparison-always-evaluates-to-tr.patch │ │ │ │ ├── 0001-parse-make-grammar.y-work-with-Bison-3.patch │ │ │ │ ├── 0002-gst-glib2.m4-don-t-do-crazy-things-to-GLIB_CFLAGS.patch │ │ │ │ ├── check_fix.patch │ │ │ │ ├── gst-inspect-check-error.patch │ │ │ │ ├── gstregistrybinary.c │ │ │ │ └── gstregistrybinary.h │ │ │ └── gstreamer_0.10.36.bb │ │ ├── gstreamer │ │ │ ├── files │ │ │ │ └── display.patch │ │ │ └── gst123_0.3.1.bb │ │ ├── juce │ │ │ ├── nativesdk-projucer_git.bb │ │ │ ├── projucer-native_git.bb │ │ │ └── projucer.inc │ │ ├── libao │ │ │ └── libao_1.2.0.bb │ │ ├── libavc1394 │ │ │ └── libavc1394_0.5.4.bb │ │ ├── libdc1394 │ │ │ ├── files │ │ │ │ └── install_examples.patch │ │ │ └── libdc1394_git.bb │ │ ├── libdvbpsi │ │ │ └── libdvbpsi_1.3.0.bb │ │ ├── libdvdnav │ │ │ └── libdvdnav_5.0.3.bb │ │ ├── libiec61883 │ │ │ └── libiec61883_1.2.0.bb │ │ ├── libsquish │ │ │ └── libsquish_git.bb │ │ ├── musicbrainz │ │ │ ├── files │ │ │ │ └── allow-libdir-override.patch │ │ │ └── libmusicbrainz_git.bb │ │ ├── musicpd │ │ │ ├── libmpd-11.8.17 │ │ │ │ └── glibc-2.20.patch │ │ │ ├── libmpd_11.8.17.bb │ │ │ ├── mpd │ │ │ │ └── mpd.conf.in │ │ │ └── mpd_0.19.15.bb │ │ ├── openal │ │ │ └── openal-soft_1.15.1.bb │ │ ├── opencore-amr │ │ │ ├── opencore-amr_0.1.3.bb │ │ │ ├── vo-aacenc_0.1.3.bb │ │ │ └── vo-amrwbenc_0.1.3.bb │ │ ├── rtmpdump │ │ │ ├── rtmpdump │ │ │ │ └── fix-racing-build-issue.patch │ │ │ └── rtmpdump_2.4.bb │ │ ├── sample-content │ │ │ ├── bigbuckbunny-1080p.bb │ │ │ ├── bigbuckbunny-480p.bb │ │ │ ├── bigbuckbunny-720p.bb │ │ │ └── tearsofsteel-1080p.bb │ │ ├── schroedinger │ │ │ ├── schroedinger │ │ │ │ └── configure.ac.patch │ │ │ └── schroedinger_1.0.11.bb │ │ ├── sox │ │ │ └── sox_14.4.0.bb │ │ ├── streamripper │ │ │ ├── streamripper │ │ │ │ ├── 0001-build-these-are-foreign-automake-projects.patch │ │ │ │ ├── 0002-build-don-t-ignore-CPPFLAGS-from-environment.patch │ │ │ │ └── 0003-ripstream-fix-compilation.patch │ │ │ └── streamripper_1.64.6.bb │ │ ├── vlc │ │ │ ├── libdvdcss_1.3.0.bb │ │ │ ├── vlc.inc │ │ │ ├── vlc │ │ │ │ ├── 0001-enable-subdir-objects.patch │ │ │ │ ├── 0002-glibc-does-not-provide-strlcpy.patch │ │ │ │ ├── 0003-use-am-path-libgcrypt.patch │ │ │ │ ├── 0004-modules-gui-qt4-out-of-tree-build.patch │ │ │ │ ├── 0005-libpostproc-header-check.patch │ │ │ │ ├── 0006-make-opencv-configurable.patch │ │ │ │ ├── 0007-use-vorbisidec.patch │ │ │ │ ├── 0008-fix-luaL-checkint.patch │ │ │ │ ├── 0009-Avcodec-swscale-use-AV_PIX_FMT-consistently.patch │ │ │ │ └── 0010-SWSCALE-fix-compilation-with-4.x.patch │ │ │ └── vlc_2.2.2.bb │ │ └── vorbis-tools │ │ │ ├── vorbis-tools │ │ │ └── 0001-oggenc-Fix-large-alloca-on-bad-AIFF-input.patch │ │ │ └── vorbis-tools_1.4.0.bb │ └── recipes-support │ │ ├── libmediaart │ │ ├── libmediaart-2.0_1.9.0.bb │ │ ├── libmediaart.inc │ │ └── libmediaart_0.7.0.bb │ │ ├── liboil │ │ ├── liboil-0.3.17 │ │ │ ├── 0001-Fix-enable-vfp-flag.patch │ │ │ ├── fix-unaligned-whitelist.patch │ │ │ ├── liboil_fix_for_x32.patch │ │ │ └── no-tests.patch │ │ └── liboil_0.3.17.bb │ │ └── libsrtp │ │ └── libsrtp_1.5.2.bb ├── meta-networking │ ├── COPYING.MIT │ ├── MAINTAINERS │ ├── README │ ├── classes │ │ └── waf-samba.bbclass │ ├── conf │ │ ├── distro │ │ │ └── include │ │ │ │ └── meta_networking_security_flags.inc │ │ └── layer.conf │ ├── files │ │ └── waf-cross-answers │ │ │ ├── README │ │ │ ├── cross-answers-aarch64.txt │ │ │ ├── cross-answers-arm.txt │ │ │ ├── cross-answers-i586.txt │ │ │ ├── cross-answers-i686.txt │ │ │ ├── cross-answers-mips.txt │ │ │ ├── cross-answers-mips64.txt │ │ │ ├── cross-answers-mipsel.txt │ │ │ ├── cross-answers-powerpc.txt │ │ │ ├── cross-answers-powerpc64.txt │ │ │ └── cross-answers-x86_64.txt │ ├── licenses │ │ ├── DMTF │ │ ├── copyleft-next-0.3.0 │ │ ├── netperf │ │ └── radvd │ ├── recipes-connectivity │ │ ├── crda │ │ │ ├── crda │ │ │ │ ├── 0001-Makefile-respect-LDFLAGS-for-libreg.patch │ │ │ │ ├── do-not-run-ldconfig-if-destdir-is-set.patch │ │ │ │ ├── fix-gcc-6-unused-variables.patch │ │ │ │ └── fix-linking-of-libraries-used-by-reglib.patch │ │ │ └── crda_3.18.bb │ │ ├── daq │ │ │ ├── daq_2.0.6.bb │ │ │ └── files │ │ │ │ └── disable-run-test-program-while-cross-compiling.patch │ │ ├── dhcpcd │ │ │ └── dhcpcd_6.11.3.bb │ │ ├── inetutils │ │ │ ├── inetutils │ │ │ │ ├── 0001-rcp-fix-to-work-with-large-files.patch │ │ │ │ ├── fix-disable-ipv6.patch │ │ │ │ ├── inetutils-1.8-0001-printf-parse-pull-in-features.h-for-__GLIBC__.patch │ │ │ │ ├── inetutils-1.8-0003-wchar.patch │ │ │ │ ├── inetutils-1.9-PATH_PROCNET_DEV.patch │ │ │ │ ├── inetutils-only-check-pam_appl.h-when-pam-enabled.patch │ │ │ │ ├── rexec.xinetd.inetutils │ │ │ │ ├── rlogin.xinetd.inetutils │ │ │ │ ├── rsh.xinetd.inetutils │ │ │ │ ├── telnet.xinetd.inetutils │ │ │ │ ├── tftpd.xinetd.inetutils │ │ │ │ └── version.patch │ │ │ └── inetutils_1.9.4.bb │ │ ├── lftp │ │ │ ├── files │ │ │ │ └── fix-gcc-6-conflicts-signbit.patch │ │ │ └── lftp_4.7.3.bb │ │ ├── libdnet │ │ │ └── libdnet_1.12.bb │ │ ├── mbedtls │ │ │ └── mbedtls_1.3.17.bb │ │ ├── openconnect │ │ │ └── openconnect_git.bb │ │ ├── relayd │ │ │ └── relayd_git.bb │ │ ├── samba │ │ │ ├── samba-4.4.5 │ │ │ │ ├── 00-fix-typos-in-man-pages.patch │ │ │ │ ├── 0006-avoid-using-colon-in-the-checking-msg.patch │ │ │ │ ├── 10-use-only-libsystemd.patch │ │ │ │ ├── 16-do-not-check-xsltproc-manpages.patch │ │ │ │ ├── 20-do-not-import-target-module-while-cross-compile.patch │ │ │ │ ├── 21-add-config-option-without-valgrind.patch │ │ │ │ └── volatiles.03_samba │ │ │ └── samba_4.4.5.bb │ │ ├── sethdlc │ │ │ ├── files │ │ │ │ └── sethdlc-fix-host-contamination.patch │ │ │ └── sethdlc.bb │ │ ├── snort │ │ │ ├── snort │ │ │ │ ├── 0001-fix-do_package-failed-since-snort-2.9.7.0.patch │ │ │ │ ├── 0001-libpcap-search-sysroot-for-headers.patch │ │ │ │ ├── disable-dap-address-space-id.patch │ │ │ │ ├── disable-daq-flow-id.patch │ │ │ │ ├── disable-daq-verdict-retry.patch │ │ │ │ ├── disable-inaddr-none.patch │ │ │ │ └── snort.init │ │ │ └── snort_2.9.7.5.bb │ │ ├── ufw │ │ │ ├── ufw │ │ │ │ ├── 0001-optimize-boot.patch │ │ │ │ ├── 0002-lp1044361.patch │ │ │ │ ├── 0003-fix-typeerror-on-error.patch │ │ │ │ ├── 0004-lp1039729.patch │ │ │ │ ├── 0005-lp1191197.patch │ │ │ │ ├── setup-add-an-option-to-specify-iptables-location.patch │ │ │ │ └── setup-only-make-one-reference-to-env.patch │ │ │ └── ufw_0.33.bb │ │ ├── vlan │ │ │ ├── vlan-1.9 │ │ │ │ └── no-HOME-includes.patch │ │ │ └── vlan_1.9.bb │ │ ├── vpnc │ │ │ ├── vpnc │ │ │ │ ├── default.conf │ │ │ │ ├── long-help │ │ │ │ ├── makeman.patch │ │ │ │ └── vpnc-install.patch │ │ │ └── vpnc_0.5.3.bb │ │ ├── wireless-regdb │ │ │ └── wireless-regdb_2016.06.10.bb │ │ └── wolfssl │ │ │ └── wolfssl_3.9.0.bb │ ├── recipes-daemons │ │ ├── atftp │ │ │ ├── atftp │ │ │ │ ├── 0001-argz.h-fix-musl-compile-add-missing-defines.patch │ │ │ │ ├── 0002-tftp.h-tftpd.h-fix-musl-compile-missing-include.patch │ │ │ │ └── atftpd.service │ │ │ ├── atftp_git.bb │ │ │ └── files │ │ │ │ ├── atftp-0.7-sorcerers_apprentice.patch │ │ │ │ ├── atftpd-0.7_circumvent_tftp_size_restrictions.patch │ │ │ │ ├── atftpd-0.7_unprotected_assignments_crash.patch │ │ │ │ └── atftpd.init │ │ ├── autofs │ │ │ ├── autofs │ │ │ │ ├── 0001-systemd-allow-with-systemd-to-take-a-path-arg.patch │ │ │ │ ├── Makefile.rules-cross.patch │ │ │ │ ├── add-the-needed-stdarg.h.patch │ │ │ │ ├── autofs-5.0.7-do-not-check-for-modprobe.patch │ │ │ │ ├── autofs-5.0.7-fix-lib-deps.patch │ │ │ │ ├── autofs-5.0.7-include-linux-nfs.h-directly-in-rpc_sub.patch │ │ │ │ ├── autofs-additional-distros.patch │ │ │ │ ├── cross.patch │ │ │ │ ├── fix-the-YACC-rule-to-fix-a-building-failure.patch │ │ │ │ ├── fix_disable_ldap.patch │ │ │ │ ├── force-STRIP-to-emtpy.patch │ │ │ │ ├── libtirpc-name-clash-backout.patch │ │ │ │ ├── libtirpc.patch │ │ │ │ ├── no-bash.patch │ │ │ │ ├── remove-bashism.patch │ │ │ │ └── using-pkg-config-to-detect-libxml-2.0-and-krb5.patch │ │ │ └── autofs_5.1.1.bb │ │ ├── cyrus-sasl │ │ │ ├── cyrus-sasl │ │ │ │ ├── Fix-hardcoded-libdir.patch │ │ │ │ ├── avoid-to-call-AC_TRY_RUN.patch │ │ │ │ ├── debian_patches_0009_sasldb_al.diff │ │ │ │ ├── debian_patches_0014_avoid_pic_overwrite.diff │ │ │ │ ├── sasl.h-include-stddef.h-for-size_t-on-NetBSD.patch │ │ │ │ ├── saslauthd.conf │ │ │ │ └── saslauthd.service │ │ │ └── cyrus-sasl_2.1.26.bb │ │ ├── dnrd │ │ │ ├── dnrd │ │ │ │ ├── dnrd.conf.sample │ │ │ │ ├── dnrd.init │ │ │ │ └── dnrd.service │ │ │ └── dnrd_2.20.3.bb │ │ ├── iscsi-initiator-utils │ │ │ ├── files │ │ │ │ ├── 99_iscsi-initiator-utils │ │ │ │ ├── initd.debian │ │ │ │ ├── iscsi-initiator │ │ │ │ ├── iscsi-initiator-targets.service │ │ │ │ ├── iscsi-initiator-utils-dont-use-static.patch │ │ │ │ ├── iscsi-initiator-utils-use-var-for-config.patch │ │ │ │ ├── iscsi-initiator.service │ │ │ │ └── set_initiatorname │ │ │ └── iscsi-initiator-utils_2.0-873.bb │ │ ├── lldpd │ │ │ ├── files │ │ │ │ ├── lldpd.default │ │ │ │ └── lldpd.init.d │ │ │ └── lldpd_0.9.2.bb │ │ ├── ncftp │ │ │ ├── ncftp │ │ │ │ └── ncftp-configure-use-BUILD_CC-for-ccdv.patch │ │ │ └── ncftp_3.2.5.bb │ │ ├── opensaf │ │ │ ├── opensaf │ │ │ │ ├── 0001-plmcd-error-fix.patch │ │ │ │ └── install-samples-from-srcdir.patch │ │ │ └── opensaf_5.0.0.bb │ │ ├── postfix │ │ │ ├── files │ │ │ │ ├── aliasesdb │ │ │ │ ├── check_hostname.sh │ │ │ │ ├── install.patch │ │ │ │ ├── internal_recipient │ │ │ │ ├── main.cf_2.0 │ │ │ │ ├── makedefs.patch │ │ │ │ ├── postfix │ │ │ │ └── postfix.service │ │ │ ├── postfix.inc │ │ │ └── postfix_3.1.1.bb │ │ ├── proftpd │ │ │ ├── files │ │ │ │ ├── basic.conf.patch │ │ │ │ ├── build_fixup.patch │ │ │ │ ├── close-RequireValidShell-check.patch │ │ │ │ ├── contrib.patch │ │ │ │ ├── default │ │ │ │ ├── proftpd-basic.init │ │ │ │ └── proftpd.service │ │ │ └── proftpd_1.3.5b.bb │ │ ├── ptpd │ │ │ ├── ptpd │ │ │ │ ├── ptpd-use-pkgconfig.patch │ │ │ │ ├── ptpd.conf │ │ │ │ └── ptpd.service │ │ │ └── ptpd_2.3.1.bb │ │ ├── pure-ftpd │ │ │ ├── pure-ftpd │ │ │ │ ├── 0001-Remove-hardcoded-usr-local-includes-from-configure.a.patch │ │ │ │ └── nostrip.patch │ │ │ └── pure-ftpd_1.0.42.bb │ │ ├── radvd │ │ │ ├── files │ │ │ │ ├── radvd.default │ │ │ │ ├── radvd.init │ │ │ │ ├── radvd.service │ │ │ │ └── volatiles.03_radvd │ │ │ ├── radvd.inc │ │ │ └── radvd_2.14.bb │ │ ├── squid │ │ │ ├── files │ │ │ │ ├── Add-default-entry-for-cross-compile.patch │ │ │ │ ├── Fix-flawed-dynamic-ldb-link-test-in-configure.patch │ │ │ │ ├── Set-up-for-cross-compilation.patch │ │ │ │ ├── Skip-AC_RUN_IFELSE-tests.patch │ │ │ │ ├── run-ptest │ │ │ │ ├── set_sysroot_patch.patch │ │ │ │ ├── squid-don-t-do-squid-conf-tests-at-build-time.patch │ │ │ │ ├── squid-use-serial-tests-config-needed-by-ptest.patch │ │ │ │ └── volatiles.03_squid │ │ │ └── squid_3.5.20.bb │ │ ├── tftp-hpa │ │ │ ├── files │ │ │ │ ├── add-error-check-for-disk-filled-up.patch │ │ │ │ ├── default │ │ │ │ ├── fix-writing-emtpy-file.patch │ │ │ │ ├── init │ │ │ │ ├── tftp-0.40-remap.patch │ │ │ │ ├── tftp-0.42-tftpboot.patch │ │ │ │ ├── tftp-0.49-chk_retcodes.patch │ │ │ │ ├── tftp-0.49-cmd_arg.patch │ │ │ │ ├── tftp-hpa-0.39-tzfix.patch │ │ │ │ ├── tftp-hpa-0.49-fortify-strcpy-crash.patch │ │ │ │ ├── tftp-hpa-0.49-stats.patch │ │ │ │ ├── tftp-hpa-5.2-pktinfo.patch │ │ │ │ ├── tftp-hpa-bug-fix-on-separated-CR-and-LF.patch │ │ │ │ └── tftp-xinetd │ │ │ └── tftp-hpa_5.2.bb │ │ ├── vblade │ │ │ ├── files │ │ │ │ ├── cross.patch │ │ │ │ └── makefile-add-ldflags.patch │ │ │ └── vblade_20.bb │ │ └── vsftpd │ │ │ ├── files │ │ │ ├── change-secure_chroot_dir.patch │ │ │ ├── init │ │ │ ├── volatiles.99_vsftpd │ │ │ ├── vsftpd.conf │ │ │ ├── vsftpd.ftpusers │ │ │ ├── vsftpd.service │ │ │ └── vsftpd.user_list │ │ │ ├── vsftpd-3.0.3 │ │ │ ├── 0001-vsftpd-allow-sysinfo-in-the-seccomp-sandbox.patch │ │ │ ├── makefile-destdir.patch │ │ │ ├── makefile-libs.patch │ │ │ ├── makefile-strip.patch │ │ │ ├── nopam-with-tcp_wrappers.patch │ │ │ ├── nopam.patch │ │ │ ├── vsftpd-2.1.0-filter.patch │ │ │ └── vsftpd-tcp_wrappers-support.patch │ │ │ └── vsftpd_3.0.3.bb │ ├── recipes-extended │ │ └── iscsitarget │ │ │ ├── files │ │ │ ├── access-sk_v6_daddr-iff-IPV6-defined.patch │ │ │ ├── build_with_updated_bio_struct_of_linux_v4.3_and_above.patch │ │ │ ├── build_with_updated_interfaces_of_linux_v4.8_and_above.patch │ │ │ ├── fix-errors-observed-with-linux-3.19-and-greater.patch │ │ │ └── use-kernel-makefile-to-get-kernel-version.patch │ │ │ └── iscsitarget_1.4.20.3+svn502.bb │ ├── recipes-filter │ │ ├── conntrack-tools │ │ │ ├── conntrack-tools_1.4.2.bb │ │ │ └── files │ │ │ │ ├── 0001-conntrackd-build-fix-crash-when-optional-kernel-modu.patch │ │ │ │ ├── conntrack-failover │ │ │ │ └── init │ │ ├── ebtables │ │ │ ├── ebtables-2.0.10-4 │ │ │ │ ├── 01debian_defaultconfig.patch │ │ │ │ ├── ebtables.common │ │ │ │ ├── ebtables.init │ │ │ │ ├── ebtables.service │ │ │ │ ├── installnonroot.patch │ │ │ │ └── no-as-needed.patch │ │ │ └── ebtables_2.0.10-4.bb │ │ ├── libmnl │ │ │ └── libmnl_1.0.4.bb │ │ ├── libnetfilter │ │ │ ├── files │ │ │ │ └── replace-VLAs-in-union.patch │ │ │ ├── libnetfilter-acct_1.0.3.bb │ │ │ ├── libnetfilter-conntrack_1.0.4.bb │ │ │ ├── libnetfilter-cthelper_1.0.0.bb │ │ │ ├── libnetfilter-cttimeout_1.0.0.bb │ │ │ ├── libnetfilter-log_1.0.1.bb │ │ │ └── libnetfilter-queue_1.0.2.bb │ │ ├── libnfnetlink │ │ │ └── libnfnetlink_1.0.1.bb │ │ ├── libnftnl │ │ │ └── libnftnl_1.0.6.bb │ │ ├── nfacct │ │ │ └── nfacct_1.0.2.bb │ │ └── nftables │ │ │ ├── files │ │ │ └── fix-to-generate-ntf.8.patch │ │ │ └── nftables_0.6.bb │ ├── recipes-irc │ │ └── znc │ │ │ └── znc_git.bb │ ├── recipes-kernel │ │ └── netmap │ │ │ ├── files │ │ │ ├── 0001-testmmap-fix-compile-issue-with-gcc-5.x.patch │ │ │ └── makefile_fixup.patch │ │ │ ├── netmap-modules_git.bb │ │ │ ├── netmap.inc │ │ │ └── netmap_git.bb │ ├── recipes-netkit │ │ ├── netkit-ftp │ │ │ ├── netkit-ftp │ │ │ │ └── Add_ARG_MAX_define.patch │ │ │ └── netkit-ftp_0.17.bb │ │ ├── netkit-rpc │ │ │ ├── netkit-rpc │ │ │ │ └── gcc4.patch │ │ │ └── netkit-rpc_0.17.bb │ │ ├── netkit-rsh │ │ │ ├── netkit-rsh │ │ │ │ ├── fix-host-variable.patch │ │ │ │ ├── fixup_wait3_api_change.patch │ │ │ │ ├── netkit-rsh-0.17-rexec-ipv6.patch │ │ │ │ ├── no_pam_build_fix.patch │ │ │ │ ├── rexec.pam │ │ │ │ ├── rexec.xinetd.netkit │ │ │ │ ├── rlogin.pam │ │ │ │ ├── rlogin.xinetd.netkit │ │ │ │ ├── rsh-redone_link_order_file.patch │ │ │ │ ├── rsh.pam │ │ │ │ └── rsh.xinetd.netkit │ │ │ └── netkit-rsh_0.17.bb │ │ ├── netkit-rusers │ │ │ ├── netkit-rusers │ │ │ │ └── rpc.rusersd-Makefile-fix-parallel-build-issue.patch │ │ │ └── netkit-rusers_0.17.bb │ │ ├── netkit-rwho │ │ │ ├── netkit-rwho │ │ │ │ ├── rwhod │ │ │ │ └── rwhod.default │ │ │ └── netkit-rwho_0.17.bb │ │ ├── netkit-telnet │ │ │ ├── files │ │ │ │ ├── To-aviod-buffer-overflow-in-telnet.patch │ │ │ │ ├── Warning-fix-in-the-step-of-install.patch │ │ │ │ ├── cross-compile.patch │ │ │ │ └── telnet-xinetd │ │ │ └── netkit-telnet_0.17.bb │ │ └── netkit-tftp │ │ │ ├── netkit-tftp │ │ │ └── tftp.conf │ │ │ └── netkit-tftp_0.17.bb │ ├── recipes-protocols │ │ ├── accel-ppp │ │ │ └── accel-ppp_git.bb │ │ ├── net-snmp │ │ │ ├── files │ │ │ │ ├── init │ │ │ │ ├── snmpd.conf │ │ │ │ └── snmptrapd.conf │ │ │ ├── net-snmp │ │ │ │ ├── 0001-config_os_headers-Error-Fix.patch │ │ │ │ ├── 0001-config_os_libs2-Error-Fix.patch │ │ │ │ ├── 0001-get_pid_from_inode-Include-limit.h.patch │ │ │ │ ├── 0001-snmplib-keytools.c-Don-t-check-for-return-from-EVP_M.patch │ │ │ │ ├── dont-return-incompletely-parsed-varbinds.patch │ │ │ │ ├── fix-libtool-finish.patch │ │ │ │ ├── net-snmp-add-knob-whether-nlist.h-are-checked.patch │ │ │ │ ├── net-snmp-agentx-crash.patch │ │ │ │ ├── net-snmp-testing-add-the-output-format-for-ptest.patch │ │ │ │ ├── run-ptest │ │ │ │ ├── snmpd.service │ │ │ │ ├── snmptrapd.service │ │ │ │ └── systemd-support.patch │ │ │ └── net-snmp_5.7.3.bb │ │ ├── openflow │ │ │ ├── openflow.inc │ │ │ ├── openflow_1.0.bb │ │ │ └── openflow_git.bb │ │ ├── openl2tp │ │ │ ├── openl2tp │ │ │ │ ├── 0001-test-pppd_dummy.c-Fix-return-value.patch │ │ │ │ ├── Makefile-modify-CFLAGS-to-aviod-build-error.patch │ │ │ │ ├── Makefile-obey-LDFLAGS.patch │ │ │ │ └── openl2tp-simplify-gcc-warning-hack.patch │ │ │ └── openl2tp_1.8.bb │ │ ├── pptp-linux │ │ │ ├── pptp-linux-1.8.0 │ │ │ │ └── options.pptp │ │ │ └── pptp-linux_1.8.0.bb │ │ ├── quagga │ │ │ ├── files │ │ │ │ ├── 0001-ospf6d-check-ospf6-before-using-it-in-ospf6_clean.patch │ │ │ │ ├── bgpd.service │ │ │ │ ├── isisd.service │ │ │ │ ├── ospf6d.service │ │ │ │ ├── ospfd.service │ │ │ │ ├── quagga-Avoid-duplicate-connected-address.patch │ │ │ │ ├── quagga.default │ │ │ │ ├── quagga.init │ │ │ │ ├── quagga.pam │ │ │ │ ├── ripd-fix-two-bugs-after-received-SIGHUP.patch │ │ │ │ ├── ripd.service │ │ │ │ ├── ripngd.service │ │ │ │ ├── volatiles.03_quagga │ │ │ │ ├── watchquagga.default │ │ │ │ ├── watchquagga.init │ │ │ │ └── zebra.service │ │ │ ├── quagga.inc │ │ │ └── quagga_1.0.20160315.bb │ │ ├── radiusclient-ng │ │ │ ├── radiusclient-ng │ │ │ │ ├── Modify-configure.in-and-etc-Makefile.am.patch │ │ │ │ └── config-site.radiusclient-ng-0.5.6 │ │ │ └── radiusclient-ng_0.5.6.bb │ │ ├── rp-pppoe │ │ │ ├── rp-pppoe-3.12 │ │ │ │ ├── configure.in-Error-fix.patch │ │ │ │ ├── configure.patch │ │ │ │ ├── configure_in_cross.patch │ │ │ │ ├── discard-use-of-dnl-in-Makefile.am.patch │ │ │ │ ├── dont-swallow-errors.patch │ │ │ │ ├── pppoe-server.default │ │ │ │ ├── pppoe-server.init │ │ │ │ ├── pppoe-server.service │ │ │ │ ├── pppoe-src-restrictions.patch │ │ │ │ ├── top-autoconf.patch │ │ │ │ └── update-config.patch │ │ │ └── rp-pppoe_3.12.bb │ │ ├── tsocks │ │ │ ├── tsocks │ │ │ │ └── makefile-add-ldflags.patch │ │ │ └── tsocks_1.8beta5.bb │ │ ├── xl2tpd │ │ │ ├── xl2tpd.inc │ │ │ ├── xl2tpd │ │ │ │ └── fix-inline-functions-errors-with-gcc-5.x.patch │ │ │ ├── xl2tpd_1.3.6.bb │ │ │ └── xl2tpd_git.bb │ │ └── zeroconf │ │ │ ├── zeroconf │ │ │ ├── compilefix.patch │ │ │ ├── debian-zeroconf │ │ │ ├── makefile-add-ldflags.patch │ │ │ └── zeroconf-default │ │ │ └── zeroconf_0.9.bb │ └── recipes-support │ │ ├── aoetools │ │ ├── aoetools │ │ │ ├── aoe-stat-no-bashism.patch │ │ │ └── makefile-add-ldflags.patch │ │ └── aoetools_36.bb │ │ ├── arptables │ │ ├── arptables-0.0.3-4 │ │ │ ├── arptables-arpt-get-target-fix.patch │ │ │ ├── arptables-compile-install.patch │ │ │ ├── arptables-init-busybox.patch │ │ │ ├── arptables-remove-bashism.patch │ │ │ └── arptables.service │ │ └── arptables_0.0.3-4.bb │ │ ├── bridge-utils │ │ ├── bridge-utils.inc │ │ ├── bridge-utils │ │ │ ├── 0001-build-error-out-correctly-if-a-submake-fails.patch │ │ │ ├── 0002-libbridge-fix-some-build-time-warnings-fcntl.h.patch │ │ │ ├── 0003-bridge-fix-some-build-time-warnings-errno.h.patch │ │ │ ├── 0004-libbridge-add-missing-include-s-fix-build-against-mu.patch │ │ │ ├── 0005-build-don-t-ignore-CFLAGS-from-environment.patch │ │ │ ├── bridge-utils-1.5-check-error-returns-from-write-to-sysfs.patch │ │ │ ├── bridge-utils-1.5-fix-error-message-for-incorrect-command.patch │ │ │ ├── bridge-utils-1.5-fix-incorrect-command-in-manual.patch │ │ │ └── kernel-headers.patch │ │ └── bridge-utils_1.5.bb │ │ ├── c-ares │ │ ├── c-ares │ │ │ └── 0001-configure.ac-don-t-override-passed-cflags.patch │ │ └── c-ares_1.12.0.bb │ │ ├── chrony │ │ ├── chrony │ │ │ ├── chrony.conf │ │ │ └── chronyd │ │ └── chrony_2.4.bb │ │ ├── cifs │ │ └── cifs-utils_git.bb │ │ ├── cim-schema │ │ ├── cim-schema-docs_2.40.0.bb │ │ ├── cim-schema-exper_2.39.0.bb │ │ ├── cim-schema-final_2.40.0.bb │ │ ├── cim-schema.inc │ │ ├── cim-schema │ │ │ └── files │ │ │ │ └── LICENSE │ │ └── files │ │ │ └── LICENSE │ │ ├── ctdb │ │ ├── ctdb │ │ │ ├── 01-support-cross-compile-for-linux-os.patch │ │ │ ├── 02-link-rep_snprintf-for-ltdbtool.patch │ │ │ └── service-ensure-the-PID-directory-is-created.patch │ │ └── ctdb_2.5.6.bb │ │ ├── curlpp │ │ ├── curlpp │ │ │ ├── example21.cpp-remove-deprecated-code.patch │ │ │ └── pkgconfig_fix.patch │ │ └── curlpp_0.7.3.bb │ │ ├── dnsmasq │ │ ├── dnsmasq.inc │ │ ├── dnsmasq │ │ │ └── lua.patch │ │ ├── dnsmasq_2.76.bb │ │ └── files │ │ │ ├── 99_dnsmasq │ │ │ ├── dnsmasq-noresolvconf.service │ │ │ ├── dnsmasq-resolvconf-helper │ │ │ ├── dnsmasq-resolvconf.service │ │ │ ├── dnsmasq.conf │ │ │ ├── dnsmasq.resolvconf │ │ │ └── init │ │ ├── dnssec-conf │ │ └── dnssec-conf_2.02.bb │ │ ├── dovecot │ │ ├── dovecot │ │ │ ├── 0001-configure.ac-convert-AC_TRY_RUN-to-AC_TRY_LINK-state.patch │ │ │ ├── dovecot.service │ │ │ └── dovecot.socket │ │ └── dovecot_2.2.25.bb │ │ ├── drbd │ │ ├── drbd-utils │ │ │ ├── 0001-Makefile.in-don-t-compile-documentation.patch │ │ │ └── 0001-Makefile.in-fix-permission-bits-for-drbd.service.patch │ │ └── drbd-utils_8.9.3.bb │ │ ├── esmtp │ │ └── esmtp_1.2.bb │ │ ├── fetchmail │ │ └── fetchmail_6.3.26.bb │ │ ├── fping │ │ └── fping_3.5.bb │ │ ├── geoip │ │ ├── files │ │ │ └── run-ptest │ │ ├── geoip-perl │ │ │ └── run-ptest │ │ ├── geoip-perl_1.50.bb │ │ ├── geoip_1.6.9.bb │ │ ├── geoipupdate-2.2.2 │ │ │ ├── GeoIP.conf │ │ │ └── geoipupdate.cron │ │ └── geoipupdate_2.2.2.bb │ │ ├── ifenslave │ │ └── ifenslave_2.7.bb │ │ ├── iftop │ │ └── iftop_1.0pre4.bb │ │ ├── ipsec-tools │ │ ├── ipsec-tools │ │ │ ├── 0001-racoon-pfkey-avoid-potential-null-pointer-dereferenc.patch │ │ │ ├── 0002-Don-t-link-against-libfl.patch │ │ │ ├── configure.patch │ │ │ ├── fix-CVE-2015-4047.patch │ │ │ ├── glibc-2.20.patch │ │ │ ├── racoon-Resend-UPDATE-message-when-received-EINTR-message.patch │ │ │ ├── racoon-check-invalid-ivm.patch │ │ │ ├── racoon-check-invalid-pointers.patch │ │ │ ├── racoon.conf │ │ │ ├── racoon.conf.sample │ │ │ └── racoon.service │ │ └── ipsec-tools_0.8.2.bb │ │ ├── ipvsadm │ │ ├── ipvsadm │ │ │ ├── 0001-Modify-the-Makefile-for-cross-compile.patch │ │ │ ├── 0002-Replace-nl_handle-to-nl_sock.patch │ │ │ ├── 0003-ipvsadm-remove-dependency-on-bash.patch │ │ │ └── makefile-add-ldflags.patch │ │ └── ipvsadm_1.26.bb │ │ ├── libesmtp │ │ ├── libesmtp │ │ │ └── include-topdir.patch │ │ └── libesmtp_1.0.6.bb │ │ ├── libldb │ │ ├── libldb │ │ │ ├── avoid-openldap-unless-wanted.patch │ │ │ ├── do-not-import-target-module-while-cross-compile.patch │ │ │ └── ldb-Add-configure-options-for-packages.patch │ │ └── libldb_1.1.27.bb │ │ ├── libmemcached │ │ ├── files │ │ │ └── crosscompile.patch │ │ ├── libmemcached.inc │ │ ├── libmemcached_1.0.15.bb │ │ └── libmemcached_1.0.7.bb │ │ ├── libtalloc │ │ ├── libtalloc │ │ │ ├── avoid-attr-unless-wanted.patch │ │ │ └── talloc-Add-configure-options-for-packages.patch │ │ └── libtalloc_2.1.8.bb │ │ ├── libtdb │ │ ├── libtdb │ │ │ ├── do-not-check-xsltproc-manpages.patch │ │ │ └── tdb-Add-configure-options-for-packages.patch │ │ └── libtdb_1.3.10.bb │ │ ├── libtevent │ │ ├── libtevent │ │ │ ├── avoid-attr-unless-wanted.patch │ │ │ ├── do-not-check-xsltproc-manpages.patch │ │ │ └── tevent-Add-configure-options-for-packages.patch │ │ └── libtevent_0.9.29.bb │ │ ├── linux-atm │ │ ├── linux-atm │ │ │ ├── 0001-fix-compile-error-with-linux-kernel-v4.8.patch │ │ │ ├── install-from-buildir.patch │ │ │ └── link-with-ldflags.patch │ │ └── linux-atm_2.5.2.bb │ │ ├── lksctp-tools │ │ ├── lksctp-tools │ │ │ ├── run-ptest │ │ │ ├── v4test.sh │ │ │ └── v6test.sh │ │ └── lksctp-tools_1.0.16.bb │ │ ├── lowpan-tools │ │ ├── lowpan-tools │ │ │ ├── 0001-Fix-build-errors-with-clang.patch │ │ │ └── no-help2man.patch │ │ └── lowpan-tools_git.bb │ │ ├── macchanger │ │ └── macchanger_1.5.0.bb │ │ ├── memcached │ │ ├── memcached │ │ │ ├── memcached-add-hugetlbfs-check.patch │ │ │ └── redundant_comparison.patch │ │ └── memcached_1.4.33.bb │ │ ├── mtr │ │ └── mtr_0.86.bb │ │ ├── nbd │ │ └── nbd_3.11.bb │ │ ├── ndisc6 │ │ └── ndisc6_1.0.2.bb │ │ ├── netcat │ │ ├── netcat-openbsd_1.105.bb │ │ ├── netcat.inc │ │ ├── netcat │ │ │ ├── make-netcat_flag_count_work.patch │ │ │ ├── netcat-locale_h.patch │ │ │ └── obsolete_autoconf_macros.patch │ │ └── netcat_0.7.1.bb │ │ ├── netcf │ │ └── netcf_git.bb │ │ ├── netperf │ │ ├── files │ │ │ ├── cpu_set.patch │ │ │ ├── init │ │ │ └── vfork.patch │ │ └── netperf_2.6.0.bb │ │ ├── nis │ │ ├── files │ │ │ └── ypbind.init │ │ ├── nis.inc │ │ ├── yp-tools │ │ │ ├── alignment-cheat.patch │ │ │ ├── domainname.service │ │ │ └── yp-tools-ipv4-ipv6-Provide-an-in-place-version-of-mapv4v6addr.patch │ │ ├── yp-tools_2.14.bb │ │ ├── yp-tools_3.3.bb │ │ ├── ypbind-mt │ │ │ └── ypbind.service │ │ ├── ypbind-mt_1.38.bb │ │ └── ypbind-mt_2.2.bb │ │ ├── ntimed │ │ ├── ntimed │ │ │ └── use-ldflags.patch │ │ └── ntimed_git.bb │ │ ├── ntp │ │ ├── ntp │ │ │ ├── ntp-4.2.4_p6-nano.patch │ │ │ ├── ntp.conf │ │ │ ├── ntpd │ │ │ ├── ntpd.list │ │ │ ├── ntpd.service │ │ │ ├── ntpdate │ │ │ ├── ntpdate.default │ │ │ ├── ntpdate.service │ │ │ ├── sntp │ │ │ └── sntp.service │ │ └── ntp_4.2.8p8.bb │ │ ├── nuttcp │ │ └── nuttcp_7.2.1.bb │ │ ├── openvpn │ │ ├── openvpn │ │ │ ├── openvpn │ │ │ ├── openvpn-volatile.conf │ │ │ └── openvpn@.service │ │ └── openvpn_2.3.9.bb │ │ ├── phytool │ │ └── phytool.bb │ │ ├── pimd │ │ └── pimd_2.1.8.bb │ │ ├── smcroute │ │ └── smcroute_2.0.0.bb │ │ ├── ssmping │ │ ├── files │ │ │ └── 0001-Makefile-tweak-install-dir.patch │ │ └── ssmping_0.9.1.bb │ │ ├── strongswan │ │ ├── files │ │ │ ├── fix-funtion-parameter.patch │ │ │ ├── install-strongswan-swanctl-service.patch │ │ │ └── support-newer-systemd.patch │ │ └── strongswan_5.5.0.bb │ │ ├── stunnel │ │ └── stunnel_5.35.bb │ │ ├── tcpdump │ │ ├── tcpdump │ │ │ ├── add-ptest.patch │ │ │ ├── run-ptest │ │ │ ├── tcpdump-configure-dlpi.patch │ │ │ └── unnecessary-to-check-libpcap.patch │ │ ├── tcpdump_4.7.4.bb │ │ ├── tcpslice │ │ │ ├── tcpslice-1.2a3-time.patch │ │ │ └── tcpslice-CVS.20010207-bpf.patch │ │ └── tcpslice_1.2a3.bb │ │ ├── tcpreplay │ │ └── tcpreplay_4.1.1.bb │ │ ├── tnftp │ │ ├── tnftp │ │ │ └── tnftp-autotools.patch │ │ └── tnftp_20151004.bb │ │ ├── traceroute │ │ ├── traceroute │ │ │ └── filter-out-the-patches-from-subdirs.patch │ │ └── traceroute_2.1.0.bb │ │ ├── tunctl │ │ ├── tunctl.inc │ │ ├── tunctl │ │ │ └── makefile-add-ldflags.patch │ │ └── tunctl_1.5.bb │ │ └── wireshark │ │ ├── README │ │ ├── files │ │ └── Do-not-set-CC_FOR_BUILD-flags.patch │ │ └── wireshark_2.2.1.bb ├── meta-oe │ ├── COPYING.MIT │ ├── README │ ├── classes │ │ ├── breakpad.bbclass │ │ ├── gitpkgv.bbclass │ │ ├── gitver.bbclass │ │ ├── gpe.bbclass │ │ ├── machine_kernel_pr.bbclass │ │ └── socorro-syms.bbclass │ ├── conf │ │ ├── distro │ │ │ └── include │ │ │ │ └── meta_oe_security_flags.inc │ │ └── layer.conf │ ├── licenses │ │ ├── GD │ │ ├── GPL-2.0-with-lmbench-restriction │ │ ├── ImageMagick │ │ ├── Intel │ │ ├── Kilgard │ │ ├── ManishSingh │ │ ├── OGPL │ │ ├── OpenLDAP │ │ ├── QWTv1.0 │ │ ├── TLWG │ │ ├── flite │ │ ├── gnuplot │ │ ├── iozone3 │ │ ├── nbench-byte │ │ ├── unRAR │ │ ├── vim │ │ └── zsh │ ├── recipes-benchmark │ │ ├── analyze-suspend │ │ │ └── analyze-suspend_git.bb │ │ ├── bonnie │ │ │ ├── bonnie++_1.03e.bb │ │ │ └── files │ │ │ │ └── gcc-4.3-fixes.patch │ │ ├── cpuburn │ │ │ └── cpuburn-neon_20140626.bb │ │ ├── dbench │ │ │ ├── dbench_4.0.bb │ │ │ └── files │ │ │ │ ├── destdir.patch │ │ │ │ └── makefile.patch │ │ ├── fio │ │ │ └── fio_2.9.bb │ │ ├── glmark2 │ │ │ ├── files │ │ │ │ ├── 0001-Fix-wl_surface-should-be-destoryed-after-the-wl_wind.patch │ │ │ │ ├── Fix-configure-for-sqrt-check.patch │ │ │ │ └── build-Check-packages-to-be-used-by-the-enabled-flavo.patch │ │ │ └── glmark2_git.bb │ │ ├── iozone3 │ │ │ ├── iozone3 │ │ │ │ └── copyright.txt │ │ │ └── iozone3_465.bb │ │ ├── iperf │ │ │ ├── iperf-2.0.5 │ │ │ │ ├── 0001-fix-out-of-tree-config.patch │ │ │ │ ├── 0002-fix-bool-size-m4.patch │ │ │ │ └── iperf-2.0.5_ManPage.patch │ │ │ └── iperf_2.0.5.bb │ │ ├── iperf3 │ │ │ ├── iperf3 │ │ │ │ └── automake-foreign.patch │ │ │ └── iperf3_git.bb │ │ ├── libhugetlbfs │ │ │ ├── files │ │ │ │ ├── 0001-install-perl-lib-to-directory-perl-instead-of-perl5.patch │ │ │ │ ├── 0001-run_test.py-not-use-hard-coded-path-.-obj-hugeadm.patch │ │ │ │ ├── Force-text-segment-alignment-to-0x08000000-for-i386-.patch │ │ │ │ ├── fix-lib64-can-not-be-shiped-in-64bit-target.patch │ │ │ │ ├── libhugetlbfs-avoid-search-host-library-path-for-cros.patch │ │ │ │ ├── libhugetlbfs-elf_i386-avoid-search-host-library-path.patch │ │ │ │ ├── skip-checking-LIB32-and-LIB64-if-they-point-to-the-s.patch │ │ │ │ └── tests-Makefile-install-static-4G-edge-testcases.patch │ │ │ └── libhugetlbfs_git.bb │ │ ├── lmbench │ │ │ ├── lmbench-3.0-a9 │ │ │ │ ├── fix-lmbench-memory-check-failure.patch │ │ │ │ ├── lmbench_result_html_report.patch │ │ │ │ ├── obey-ranlib.patch │ │ │ │ ├── update-config-script.patch │ │ │ │ ├── update-results-script.patch │ │ │ │ └── use-base_libdir-instead-of-hardcoded-lib.patch │ │ │ ├── lmbench │ │ │ │ ├── 0001-avoid-gcc-optimize-away-the-loops.patch │ │ │ │ ├── lmbench-run │ │ │ │ └── rename-line-binary.patch │ │ │ └── lmbench_3.0-a9.bb │ │ ├── memtester │ │ │ ├── files │ │ │ │ └── Makefile.patch │ │ │ └── memtester_4.3.0.bb │ │ ├── nbench-byte │ │ │ ├── nbench-byte │ │ │ │ ├── Makefile-add-more-dependencies-to-pointer.h.patch │ │ │ │ └── nbench_32bits.patch │ │ │ └── nbench-byte_2.2.3.bb │ │ ├── phoronix-test-suite │ │ │ └── phoronix-test-suite_6.6.1.bb │ │ ├── sysbench │ │ │ └── sysbench_0.4.12.bb │ │ ├── tinymembench │ │ │ └── tinymembench_git.bb │ │ └── tiobench │ │ │ ├── tiobench-0.3.3 │ │ │ ├── 0001-Drop-inline-of-crc32-function-to-fix-build-using-GCC.patch │ │ │ ├── avoid-glibc-clashes.patch │ │ │ └── tiobench-makefile.patch │ │ │ └── tiobench_0.3.3.bb │ ├── recipes-bsp │ │ └── pointercal │ │ │ ├── pointercal │ │ │ ├── COPYING │ │ │ ├── pointercal │ │ │ ├── qemuarm │ │ │ │ └── pointercal │ │ │ ├── qemuarmv6 │ │ │ │ └── pointercal │ │ │ ├── qemuarmv7 │ │ │ │ └── pointercal │ │ │ ├── qemumips │ │ │ │ └── pointercal │ │ │ ├── qemuppc │ │ │ │ └── pointercal │ │ │ ├── qemux86-64 │ │ │ │ └── pointercal │ │ │ └── qemux86 │ │ │ │ └── pointercal │ │ │ └── pointercal_0.0.bb │ ├── recipes-connectivity │ │ ├── bluez │ │ │ ├── bluez-hcidump-2.5 │ │ │ │ └── obsolete_automake_macros.patch │ │ │ ├── bluez-hcidump_2.5.bb │ │ │ ├── bluez4-4.101 │ │ │ │ ├── bluetooth.conf │ │ │ │ ├── fix-udev-paths.patch │ │ │ │ ├── fix_encrypt_collision.patch │ │ │ │ ├── install-test-script.patch │ │ │ │ ├── network-fix-network-Connect-method-parameters.patch │ │ │ │ ├── obsolete_automake_macros.patch │ │ │ │ └── sbc_mmx.patch │ │ │ ├── bluez4.inc │ │ │ ├── bluez4_4.101.bb │ │ │ └── gst-plugin-bluetooth_4.101.bb │ │ ├── gammu │ │ │ ├── gammu │ │ │ │ ├── gammu-smsdrc │ │ │ │ └── gammurc │ │ │ └── gammu_1.32.0.bb │ │ ├── gnokii │ │ │ └── gnokii_0.6.31.bb │ │ ├── gnuradio │ │ │ └── gnuradio │ │ │ │ └── 0001-buildsys-don-t-add-usr-include-and-usr-lib-to-config.patch │ │ ├── hostapd │ │ │ ├── hostapd │ │ │ │ ├── 0001-WPS-Reject-a-Credential-with-invalid-passphrase.patch │ │ │ │ ├── defconfig │ │ │ │ ├── hostapd.service │ │ │ │ └── init │ │ │ └── hostapd_2.5.bb │ │ ├── irssi │ │ │ └── irssi_0.8.16-rc1.bb │ │ ├── krb5 │ │ │ ├── krb5 │ │ │ │ ├── 0001-aclocal-Add-parameter-to-disable-keyutils-detection.patch │ │ │ │ ├── crosscompile_nm.patch │ │ │ │ ├── debian-suppress-usr-lib-in-krb5-config.patch │ │ │ │ ├── etc │ │ │ │ │ ├── default │ │ │ │ │ │ ├── krb5-admin-server │ │ │ │ │ │ └── krb5-kdc │ │ │ │ │ └── init.d │ │ │ │ │ │ ├── krb5-admin-server │ │ │ │ │ │ └── krb5-kdc │ │ │ │ ├── krb5-admin-server.service │ │ │ │ └── krb5-kdc.service │ │ │ └── krb5_1.13.6.bb │ │ ├── libimobiledevice │ │ │ ├── files │ │ │ │ ├── configure-fix-largefile.patch │ │ │ │ └── inline-without-definition.patch │ │ │ └── libimobiledevice_1.1.4.bb │ │ ├── libmbim │ │ │ ├── libmbim │ │ │ │ └── clang.patch │ │ │ └── libmbim_1.14.0.bb │ │ ├── libmtp │ │ │ ├── libmtp-1.1.5 │ │ │ │ ├── 69-libmtp.rules │ │ │ │ └── glibc-2.20.patch │ │ │ └── libmtp_1.1.5.bb │ │ ├── libndp │ │ │ └── libndp_1.6.bb │ │ ├── libnet │ │ │ ├── libnet │ │ │ │ └── 0001-Support-musl-libc-remove-support-for-glibc-2.1.patch │ │ │ └── libnet_1.2-rc3.bb │ │ ├── libqmi │ │ │ ├── libqmi │ │ │ │ └── 0001-Detect-clang.patch │ │ │ └── libqmi_1.16.0.bb │ │ ├── libtorrent │ │ │ ├── libtorrent │ │ │ │ └── don-t-run-code-while-configuring-package.patch │ │ │ └── libtorrent_0.13.3.bb │ │ ├── linuxptp │ │ │ ├── linuxptp │ │ │ │ └── build-Allow-CC-and-prefix-to-be-overriden.patch │ │ │ └── linuxptp_1.6.bb │ │ ├── lirc │ │ │ ├── lirc.inc │ │ │ ├── lirc │ │ │ │ ├── 0001-lircrcd-Mark-local-inline-funtions-as-static.patch │ │ │ │ ├── lirc.tmpfiles │ │ │ │ ├── lirc_options.conf │ │ │ │ ├── lircd.conf │ │ │ │ ├── lircd.init │ │ │ │ ├── lircd.service │ │ │ │ └── lircexec.init │ │ │ └── lirc_0.9.2.bb │ │ ├── loudmouth │ │ │ ├── loudmouth-1.4.3 │ │ │ │ ├── 04-use-pkg-config-for-gnutls.patch │ │ │ │ └── glib-2.32.patch │ │ │ └── loudmouth_1.4.3.bb │ │ ├── modemmanager │ │ │ ├── modemmanager │ │ │ │ └── enum-conversion.patch │ │ │ └── modemmanager_1.6.4.bb │ │ ├── mosh │ │ │ └── mosh_1.2.4.bb │ │ ├── networkmanager │ │ │ ├── networkmanager-openvpn_1.2.6.bb │ │ │ ├── networkmanager │ │ │ │ ├── 0001-don-t-try-to-run-sbin-dhclient-to-get-the-version-nu.patch │ │ │ │ └── 0002-Fix-nm-version-macro-includes.patch │ │ │ └── networkmanager_1.4.2.bb │ │ ├── obex │ │ │ ├── obex-data-server │ │ │ │ └── obex-data-server-0.4.6-build-fixes-1.patch │ │ │ ├── obex-data-server_0.4.6.bb │ │ │ ├── openobex │ │ │ │ ├── disable-cable-test.patch │ │ │ │ ├── libusb_crosscompile_check.patch │ │ │ │ └── separate_builddir.patch │ │ │ └── openobex_1.7.2.bb │ │ ├── obexftp │ │ │ ├── obexftp │ │ │ │ ├── 0001-apps-CMakeLists.txt-Explicitly-link-libbfb-and-libmu.patch │ │ │ │ ├── Remove_some_printf_in_obexftpd.patch │ │ │ │ └── make_fuse_swig_optional.patch │ │ │ └── obexftp_0.24.2.bb │ │ ├── packagegroups │ │ │ └── packagegroup-tools-bluetooth.bb │ │ ├── phonet-utils │ │ │ └── phonet-utils_git.bb │ │ ├── rabbitmq-c │ │ │ └── rabbitmq-c_0.7.0.bb │ │ ├── rfkill │ │ │ ├── rfkill │ │ │ │ ├── 0001-rfkill-makefile-don-t-use-t-the-OE-install-wrapper-d.patch │ │ │ │ └── dont.call.git.rev-parse.on.parent.dir.patch │ │ │ └── rfkill_0.5.bb │ │ ├── rtorrent │ │ │ ├── rtorrent │ │ │ │ └── don-t-run-code-while-configuring-package.patch │ │ │ └── rtorrent_0.9.3.bb │ │ ├── ser2net │ │ │ └── ser2net_2.9.1.bb │ │ ├── smstools3 │ │ │ ├── smstools3 │ │ │ │ ├── fix-makefile-override.patch │ │ │ │ └── sms_binpath_and_psops.patch │ │ │ └── smstools3_3.1.15.bb │ │ ├── soft66 │ │ │ ├── files │ │ │ │ └── fix-ar.patch │ │ │ └── soft66_git.bb │ │ ├── telepathy │ │ │ ├── libtelepathy │ │ │ │ ├── doublefix.patch │ │ │ │ └── prefer_python_2.5.patch │ │ │ ├── libtelepathy_0.3.3.bb │ │ │ ├── telepathy-glib_0.24.0.bb │ │ │ ├── telepathy-idle │ │ │ │ └── fix-svc-gtk-doc.h-target.patch │ │ │ ├── telepathy-idle_0.2.0.bb │ │ │ ├── telepathy-mission-control │ │ │ │ └── tmc-Makefile-fix-race.patch │ │ │ ├── telepathy-mission-control_5.16.1.bb │ │ │ ├── telepathy-python-0.15.19 │ │ │ │ ├── parallel_make.patch │ │ │ │ ├── remove_duplicate_install.patch │ │ │ │ └── telepathy-python_fix_for_automake_1.12.patch │ │ │ └── telepathy-python_0.15.19.bb │ │ ├── thrift │ │ │ ├── thrift-0.9.3 │ │ │ │ ├── 0001-Forcibly-disable-check-for-Qt5.patch │ │ │ │ ├── 0001-THRIFT-3828-In-cmake-avoid-use-of-both-quoted-paths-.patch │ │ │ │ └── 0002-THRIFT-3831-in-test-cpp-explicitly-use-signed-char.patch │ │ │ └── thrift_0.9.3.bb │ │ ├── umip │ │ │ └── umip_1.0.bb │ │ ├── usbmuxd │ │ │ └── usbmuxd_git.bb │ │ ├── wvdial │ │ │ ├── wvdial │ │ │ │ └── typo_pon.wvdial.1.patch │ │ │ ├── wvdial_1.61.bb │ │ │ ├── wvstreams │ │ │ │ ├── 04_signed_request.diff │ │ │ │ ├── 05_gcc.diff │ │ │ │ ├── 06_gcc-4.7.diff │ │ │ │ └── 07_buildflags.diff │ │ │ └── wvstreams_4.6.1.bb │ │ ├── zabbix │ │ │ ├── zabbix │ │ │ │ ├── 0001-Fix-configure.ac.patch │ │ │ │ └── zabbix-agent.service │ │ │ └── zabbix_2.4.7.bb │ │ ├── zeroc-ice │ │ │ ├── zeroc-ice-3.5.1 │ │ │ │ └── 0002-Modify-Makefile-for-cross-compile.patch │ │ │ └── zeroc-ice_3.5.1.bb │ │ └── zeromq │ │ │ ├── cppzmq_git.bb │ │ │ ├── files │ │ │ └── run-ptest │ │ │ └── zeromq_4.1.5.bb │ ├── recipes-core │ │ ├── dbus │ │ │ ├── dbus-daemon-proxy_git.bb │ │ │ ├── libdbus-c++-0.9.0 │ │ │ │ ├── 0001-src-eventloop.cpp-use-portable-method-for-initializi.patch │ │ │ │ ├── 0002-tools-generate_proxy.cpp-avoid-possibly-undefined-ui.patch │ │ │ │ ├── 0003-Fixed-undefined-ssize_t-for-clang-3.8.0-on-FreeBSD.patch │ │ │ │ ├── 0004-use-POSIX-poll.h-instead-of-sys-poll.h.patch │ │ │ │ ├── fix-missing-unistd.h-include.patch │ │ │ │ └── remove-CXX_FOR_BUILD-stuff.patch │ │ │ └── libdbus-c++_0.9.0.bb │ │ ├── eggdbus │ │ │ ├── eggdbus │ │ │ │ ├── gtk-doc.patch │ │ │ │ └── marshal.patch │ │ │ └── eggdbus_0.6.bb │ │ ├── fakeroot │ │ │ ├── fakeroot-native_1.18.4.bb │ │ │ └── fakeroot_1.18.4.bb │ │ ├── glib-2.0 │ │ │ ├── glibmm │ │ │ │ └── remove-examples.patch │ │ │ └── glibmm_2.44.0.bb │ │ ├── libsigc++-2.0 │ │ │ └── libsigc++-2.0_2.2.11.bb │ │ ├── libxml │ │ │ ├── libxml++ │ │ │ │ ├── libxml++_ptest.patch │ │ │ │ └── run-ptest │ │ │ └── libxml++_2.38.1.bb │ │ ├── llvm │ │ │ ├── llvm-common.bb │ │ │ ├── llvm-common │ │ │ │ └── llvm-config │ │ │ ├── llvm.inc │ │ │ ├── llvm3.3 │ │ │ │ ├── Remove-error-output-from-configure-if-CFLAGS-is-set-.patch │ │ │ │ └── arm_fenv_uclibc.patch │ │ │ └── llvm3.3_3.3.bb │ │ ├── meta │ │ │ └── distro-feed-configs.bb │ │ ├── mm-common │ │ │ └── mm-common_0.9.8.bb │ │ ├── packagegroups │ │ │ ├── packagegroup-basic.bb │ │ │ ├── packagegroup-boot.bb │ │ │ └── packagegroup-cli-tools.bb │ │ ├── plymouth │ │ │ └── plymouth_0.9.2.bb │ │ ├── proxy-libintl │ │ │ ├── proxy-libintl-20100902 │ │ │ │ ├── create-as-shared-lib.patch │ │ │ │ ├── soname.patch │ │ │ │ └── stub-only.patch │ │ │ └── proxy-libintl_20100902.bb │ │ ├── toybox │ │ │ ├── toybox │ │ │ │ ├── 0001-Fix-TOYBOX_VERSION.patch │ │ │ │ └── 0002-Fix-trimmed-printf-in-grep.patch │ │ │ └── toybox_0.7.1.bb │ │ └── usleep │ │ │ ├── files │ │ │ ├── GPLv2.patch │ │ │ ├── usleep.1 │ │ │ └── usleep.c │ │ │ └── usleep_1.0.bb │ ├── recipes-devtools │ │ ├── android-tools │ │ │ ├── android-tools-conf │ │ │ │ └── android-gadget-setup │ │ │ ├── android-tools-conf_1.0.bb │ │ │ ├── android-tools │ │ │ │ ├── .gitignore │ │ │ │ ├── adb.mk │ │ │ │ ├── adbd.mk │ │ │ │ ├── android-tools-adbd.service │ │ │ │ ├── define-shell-command.patch │ │ │ │ ├── ext4_utils.mk │ │ │ │ ├── fastboot.mk │ │ │ │ ├── implicit-declaration-function-strlcat-strlcopy.patch │ │ │ │ ├── mkbootimg-Add-dt-parameter-to-specify-DT-image.patch │ │ │ │ ├── mkbootimg.mk │ │ │ │ ├── preserve-ownership.patch │ │ │ │ ├── remove-bionic-android.patch │ │ │ │ ├── remove-selinux-android.patch │ │ │ │ ├── use-capability.patch │ │ │ │ └── use-local-socket.patch │ │ │ └── android-tools_5.1.1.r37.bb │ │ ├── autoconf-archive │ │ │ ├── autoconf-archive.inc │ │ │ └── autoconf-archive_2012.04.07.bb │ │ ├── bootchart │ │ │ ├── bootchart │ │ │ │ ├── 0001-svg-add-rudimentary-support-for-ARM-cpuinfo.patch │ │ │ │ └── 0002-svg-open-etc-os-release-and-use-PRETTY_NAME-for-the-.patch │ │ │ └── bootchart_git.bb │ │ ├── breakpad │ │ │ └── breakpad_git.bb │ │ ├── cgdb │ │ │ ├── cgdb │ │ │ │ └── remove-help2man.patch │ │ │ └── cgdb_0.6.8.bb │ │ ├── cloud9 │ │ │ ├── cloud9 │ │ │ │ ├── 0001-ide-use-node-as-interpreter-for-sketches-instead-of-.patch │ │ │ │ ├── cloud9-avahi.service │ │ │ │ ├── cloud9.service │ │ │ │ └── index.js │ │ │ └── cloud9_0.6.bb │ │ ├── concurrencykit │ │ │ ├── concurrencykit │ │ │ │ └── cross.patch │ │ │ └── concurrencykit_git.bb │ │ ├── cppunit │ │ │ ├── cppunit_1.13.1.bb │ │ │ └── files │ │ │ │ └── 0001-doc-Makefile.am-do-not-preserve-file-flags-when-copy.patch │ │ ├── cscope │ │ │ └── cscope_15.8b.bb │ │ ├── ctags │ │ │ └── ctags_5.8.bb │ │ ├── cunit │ │ │ ├── cunit_2.1-3.bb │ │ │ └── files │ │ │ │ └── fixup-install-docdir.patch │ │ ├── debootstrap │ │ │ ├── debootstrap │ │ │ │ └── devices.tar.gz │ │ │ └── debootstrap_1.0.67.bb │ │ ├── dejagnu │ │ │ ├── dejagnu │ │ │ │ └── configure.patch │ │ │ └── dejagnu_1.4.4.bb │ │ ├── dt │ │ │ ├── dt │ │ │ │ ├── Stop-using-relative-path-for-scsilib.c-link.patch │ │ │ │ ├── Use-tcsh-shell.patch │ │ │ │ ├── dt-default-source-define.patch │ │ │ │ └── dt-wformat-security.patch │ │ │ └── dt_18.32.bb │ │ ├── geany │ │ │ ├── geany-plugins_1.28.bb │ │ │ ├── geany │ │ │ │ └── 0001-configure.ac-remove-additional-c-test.patch │ │ │ └── geany_1.28.bb │ │ ├── giflib │ │ │ └── giflib_5.1.4.bb │ │ ├── glade │ │ │ ├── files │ │ │ │ ├── 0001-gnome-doc-utils.make-sysrooted-pkg-config.patch │ │ │ │ └── 0002-fix-gcc-6-build.patch │ │ │ └── glade3_3.8.5.bb │ │ ├── icon-slicer │ │ │ ├── files │ │ │ │ └── 0001-Makefile.am-no-examples.patch │ │ │ └── icon-slicer_0.3.bb │ │ ├── iptraf │ │ │ ├── iptraf │ │ │ │ └── 0001-src-Fix-error-in-cross-compile.patch │ │ │ └── iptraf_3.0.0.bb │ │ ├── jq │ │ │ ├── jq │ │ │ │ └── Support-without-oniguruma.patch │ │ │ └── jq_1.5.bb │ │ ├── jsoncpp │ │ │ └── jsoncpp_1.7.7.bb │ │ ├── jsonrpc │ │ │ ├── jsonrpc │ │ │ │ ├── 0001-cmake-replace-hardcoded-lib-CMAKE_LIBRARY_PATH-with-.patch │ │ │ │ ├── 0001-filedescriptorclient-Typecast-min-arguments-correctl.patch │ │ │ │ └── 0001-filedescriptorserver-Include-sys-select.h-before-oth.patch │ │ │ └── jsonrpc_0.7.0.bb │ │ ├── lemon │ │ │ ├── files │ │ │ │ └── lemon.1 │ │ │ ├── lemon.inc │ │ │ └── lemon_3.7.3.bb │ │ ├── libedit │ │ │ └── libedit_20160618-3.1.bb │ │ ├── libfribidi │ │ │ └── fribidi_0.19.7.bb │ │ ├── libgee │ │ │ └── libgee_0.18.0.bb │ │ ├── libubox │ │ │ ├── libubox │ │ │ │ ├── 0001-version-libraries.patch │ │ │ │ └── fix-libdir.patch │ │ │ └── libubox_git.bb │ │ ├── log4cplus │ │ │ └── log4cplus_1.2.0.bb │ │ ├── ltp-ddt │ │ │ ├── ltp-ddt │ │ │ │ └── ltp-Do-not-link-against-libfl.patch │ │ │ └── ltp-ddt_1.0.0.bb │ │ ├── ltrace │ │ │ ├── ltrace │ │ │ │ ├── 0001-replace-readdir_r-with-readdir.patch │ │ │ │ └── configure-allow-to-disable-selinux-support.patch │ │ │ └── ltrace_git.bb │ │ ├── lua │ │ │ ├── lua │ │ │ │ ├── lua.pc.in │ │ │ │ ├── run-ptest │ │ │ │ └── uclibc-pthread.patch │ │ │ └── lua_5.3.3.bb │ │ ├── luajit │ │ │ ├── luajit │ │ │ │ └── 0001-Do-not-strip-automatically-this-leaves-the-stripping.patch │ │ │ └── luajit_2.0.4.bb │ │ ├── mcpp │ │ │ ├── files │ │ │ │ └── ice-mcpp.patch │ │ │ └── mcpp_2.7.2.bb │ │ ├── memstat │ │ │ └── memstat_1.0.bb │ │ ├── mercurial │ │ │ └── mercurial-native_3.8.4.bb │ │ ├── mpich │ │ │ └── mpich_3.2.bb │ │ ├── msr-tools │ │ │ └── msr-tools_1.3.bb │ │ ├── ninja │ │ │ └── ninja_1.7.1.bb │ │ ├── nodejs │ │ │ ├── nodejs │ │ │ │ └── no-registry.patch │ │ │ └── nodejs_4.6.1.bb │ │ ├── packagegroups │ │ │ └── packagegroup-sdk-target.bb │ │ ├── packagekit │ │ │ ├── packagekit-0.5.6 │ │ │ │ ├── 0001-Don-t-call-deprecated-glib-functions-and-use-the-new.patch │ │ │ │ ├── configurefix.patch │ │ │ │ └── opkgfixes.patch │ │ │ └── packagekit_0.5.6.bb │ │ ├── perl │ │ │ ├── ipc-run_0.94.bb │ │ │ ├── libdbd-mysql-perl_4.036.bb │ │ │ ├── libdbi-perl_1.636.bb │ │ │ └── libio-pty-perl_1.12.bb │ │ ├── php │ │ │ ├── php-5.6.26 │ │ │ │ └── change-AC_TRY_RUN-to-AC_TRY_LINK.patch │ │ │ ├── php.inc │ │ │ ├── php │ │ │ │ ├── 0001-acinclude-use-pkgconfig-for-libxml2-config.patch │ │ │ │ ├── 0001-php-don-t-use-broken-wrapper-for-mkdir.patch │ │ │ │ ├── 70_mod_php5.conf │ │ │ │ ├── acinclude-xml2-config.patch │ │ │ │ ├── configure.patch │ │ │ │ ├── iconv.patch │ │ │ │ ├── imap-fix-autofoo.patch │ │ │ │ ├── pear-makefile.patch │ │ │ │ ├── phar-makefile.patch │ │ │ │ ├── php-fpm-apache.conf │ │ │ │ ├── php-fpm.conf │ │ │ │ ├── php-fpm.service │ │ │ │ ├── php_exec_native.patch │ │ │ │ └── pthread-check-threads-m4.patch │ │ │ ├── php_5.5.38.bb │ │ │ └── php_5.6.26.bb │ │ ├── pm-qa │ │ │ └── pm-qa_git.bb │ │ ├── pmtools │ │ │ ├── pmtools │ │ │ │ └── pmtools-switch-to-dynamic-buffer-for-huge-ACPI-table.patch │ │ │ └── pmtools_git.bb │ │ ├── protobuf │ │ │ ├── protobuf-c_1.2.1.bb │ │ │ └── protobuf_2.6.1.bb │ │ ├── python │ │ │ ├── python-cpuset_1.5.7.bb │ │ │ ├── python-distutils-extra.bb │ │ │ ├── python-distutils-extra.inc │ │ │ ├── python-futures_3.0.5.bb │ │ │ ├── python-pygobject │ │ │ │ └── 0001-configure.ac-add-sysroot-path-to-GI_DATADIR-don-t-se.patch │ │ │ ├── python-pygobject_3.20.1.bb │ │ │ ├── python-simplejson_3.8.2.bb │ │ │ └── python3-distutils-extra.bb │ │ ├── serialcheck │ │ │ ├── serialcheck │ │ │ │ ├── 0001-Add-option-to-enable-internal-loopback.patch │ │ │ │ ├── 0001-Makefile-Change-order-of-link-flags.patch │ │ │ │ └── 0002-Restore-original-loopback-config.patch │ │ │ └── serialcheck_1.0.0.bb │ │ ├── tclap │ │ │ ├── tclap │ │ │ │ └── Makefile.am-disable-docs.patch │ │ │ └── tclap_1.2.1.bb │ │ ├── tcltk │ │ │ ├── tk │ │ │ │ ├── configure.use.fontconfig.with.xft.patch │ │ │ │ ├── confsearch.diff │ │ │ │ ├── fix-xft.diff │ │ │ │ ├── non-linux.diff │ │ │ │ ├── tklibrary.diff │ │ │ │ └── tkprivate.diff │ │ │ └── tk_8.6.6.bb │ │ ├── uw-imap │ │ │ ├── uw-imap │ │ │ │ ├── imap-2007e-shared.patch │ │ │ │ ├── imap-2007f-format-security.patch │ │ │ │ └── quote_cctype.patch │ │ │ └── uw-imap_2007f.bb │ │ ├── vala-dbus-binding-tool │ │ │ ├── vala-dbus-binding-tool.inc │ │ │ ├── vala-dbus-binding-tool │ │ │ │ └── 0001-configure.ac-don-t-use-dash-in-m4-macro-names.patch │ │ │ ├── vala-dbus-binding-tool_0.4.0.bb │ │ │ └── vala-dbus-binding-tool_git.bb │ │ ├── xerces-c │ │ │ └── xerces-c_3.1.4.bb │ │ └── yajl │ │ │ └── yajl_2.1.0.bb │ ├── recipes-extended │ │ ├── acpica │ │ │ ├── acpica_20150515.bb │ │ │ ├── acpitests │ │ │ │ ├── aapits-linux.patch │ │ │ │ └── aapits-makefile.patch │ │ │ ├── acpitests_20140828.bb │ │ │ └── files │ │ │ │ └── no-werror.patch │ │ ├── acpitool │ │ │ └── acpitool_0.5.1.bb │ │ ├── boinc │ │ │ ├── boinc-client │ │ │ │ ├── boinc-AM_CONDITIONAL.patch │ │ │ │ ├── cross-compile.patch │ │ │ │ ├── gtk-configure.patch │ │ │ │ └── opengl_m4_check.patch │ │ │ └── boinc-client_7.6.33.bb │ │ ├── cfengine │ │ │ ├── cfengine-masterfiles │ │ │ │ └── remove-policy-of-usr-local-sbin.patch │ │ │ ├── cfengine-masterfiles_3.9.0.bb │ │ │ ├── cfengine │ │ │ │ ├── change-hard-coded-lib-path.patch │ │ │ │ └── set-path-of-default-config-file.patch │ │ │ └── cfengine_3.9.0.bb │ │ ├── cmpi-bindings │ │ │ ├── cmpi-bindings │ │ │ │ ├── 0001-Add-PYTHON_ABI-suffix-to-the-python-library-name.patch │ │ │ │ ├── 0001-Fix-error.patch │ │ │ │ ├── 0001-Modify-cmakelist.patch │ │ │ │ ├── 0001-fix-the-build-error-when-python-3.0.patch │ │ │ │ ├── cmpi-bindings-0.4.17-no-ruby-perl.patch │ │ │ │ ├── cmpi-bindings-0.4.17-sblim-sigsegv.patch │ │ │ │ └── cmpi-bindings-0.9.5-python-lib-dir.patch │ │ │ └── cmpi-bindings_git.bb │ │ ├── collectd │ │ │ ├── collectd │ │ │ │ ├── 0001-collectd-replace-deprecated-readdir_r-with-readdir.patch │ │ │ │ ├── 0001-conditionally-check-libvirt.patch │ │ │ │ ├── 0001-redefine-the-dependence.patch │ │ │ │ ├── CVE-2016-6254.patch │ │ │ │ ├── collectd-version.patch │ │ │ │ ├── collectd.init │ │ │ │ ├── collectd.service │ │ │ │ └── no-gcrypt-badpath.patch │ │ │ └── collectd_5.5.0.bb │ │ ├── corosync │ │ │ └── corosync_2.4.0.bb │ │ ├── dash │ │ │ └── dash_0.5.8.bb │ │ ├── ddrescue │ │ │ └── ddrescue_1.19.bb │ │ ├── dialog │ │ │ └── dialog_1.3-20160828.bb │ │ ├── dlm │ │ │ └── dlm_4.0.2.bb │ │ ├── efibootmgr │ │ │ └── efibootmgr_0.12.bb │ │ ├── efivar │ │ │ ├── efivar │ │ │ │ ├── 0001-efivar-fix-for-cross-compile.patch │ │ │ │ ├── 0002-disable-static-build.patch │ │ │ │ ├── 0003-efivar-fix-for-cross-compile.patch │ │ │ │ ├── 0004-fix-unknow-option-for-gold-linker.patch │ │ │ │ ├── allow-multi-definitions-for-native.patch │ │ │ │ └── fix-compile-failure-with-host-gcc-4.6.patch │ │ │ └── efivar_0.24.bb │ │ ├── flashrom │ │ │ ├── flashrom │ │ │ │ ├── 0001-Fix-compilation-on-aarch64.patch │ │ │ │ ├── 0001-ichspi.c-Fix-build-with-clang.patch │ │ │ │ ├── 0002-Disable-Wtautological-pointer-compare-when-using-cla.patch │ │ │ │ └── 0003-remove-duplicate-const-qualifiers.patch │ │ │ └── flashrom_0.9.6.1.bb │ │ ├── fluentbit │ │ │ └── fluentbit_0.7.2.bb │ │ ├── gnuplot │ │ │ ├── gnuplot.inc │ │ │ ├── gnuplot │ │ │ │ ├── gnuplot.desktop │ │ │ │ ├── gnuplot.png │ │ │ │ ├── lua-loadlibs-configure-in-fix.patch │ │ │ │ ├── qtopia.trm │ │ │ │ └── subdirs.patch │ │ │ └── gnuplot_5.0.5.bb │ │ ├── haveged │ │ │ ├── haveged │ │ │ │ └── remove-systemd-unit-503.patch │ │ │ └── haveged_1.9.1.bb │ │ ├── hexedit │ │ │ ├── hexedit │ │ │ │ └── 0001-don-t-strip-when-installing.patch │ │ │ └── hexedit_1.2.13.bb │ │ ├── hplip │ │ │ ├── hplip-3.12.6 │ │ │ │ ├── configure.patch │ │ │ │ ├── cups-1.6.patch │ │ │ │ ├── fix-libusb-paths.patch │ │ │ │ └── setup-add-sleep-after-cups-reset.patch │ │ │ └── hplip_3.12.6.bb │ │ ├── indent │ │ │ └── indent_2.2.10.bb │ │ ├── iotop │ │ │ └── iotop_0.6.bb │ │ ├── jansson │ │ │ └── jansson_2.9.bb │ │ ├── konkretcmpi │ │ │ ├── konkretcmpi-native_0.9.2.bb │ │ │ ├── konkretcmpi │ │ │ │ ├── 0001-CMakeLists.txt-fix-lib64-can-not-be-shiped-in-64bit-.patch │ │ │ │ ├── 0001-to-fix-lib64-can-not-be-shiped-in-64bit-target.patch │ │ │ │ └── konkretcmpi-0.9.2-fix-returning-instance-from-method.patch │ │ │ └── konkretcmpi_0.9.2.bb │ │ ├── lcdproc │ │ │ ├── lcdproc5.inc │ │ │ └── lcdproc_0.5.6.bb │ │ ├── leveldb │ │ │ ├── leveldb │ │ │ │ └── 0001-Explicitly-disable-tcmalloc.patch │ │ │ └── leveldb_git.bb │ │ ├── libcec │ │ │ └── libcec_git.bb │ │ ├── libconfig │ │ │ └── libconfig_1.5.bb │ │ ├── libdivecomputer │ │ │ ├── files │ │ │ │ └── fix-ar.patch │ │ │ └── libdivecomputer_git.bb │ │ ├── libgxim │ │ │ ├── libgxim │ │ │ │ └── multi-line-ACLOCAL_AMFLAGS-isnot-supported-by-autoreconf.patch │ │ │ └── libgxim_0.5.0.bb │ │ ├── libimobiledevice │ │ │ ├── files │ │ │ │ ├── 0001-Fix-warnings-found-with-clang.patch │ │ │ │ └── fix-parallel-make.patch │ │ │ └── libplist_1.8.bb │ │ ├── liblockfile │ │ │ ├── liblockfile-1.09 │ │ │ │ ├── configure.patch │ │ │ │ ├── glibc-2.4.patch │ │ │ │ ├── install.patch │ │ │ │ ├── ldflags.patch │ │ │ │ ├── liblockfile-fix-install-so-to-man-dir.patch │ │ │ │ └── liblockfile-fix-nfslib-and-soname.patch │ │ │ └── liblockfile_1.09.bb │ │ ├── liblogging │ │ │ └── liblogging_1.0.5.bb │ │ ├── liblognorm │ │ │ ├── liblognorm.inc │ │ │ └── liblognorm_1.0.1.bb │ │ ├── libmodbus │ │ │ ├── libmodbus.inc │ │ │ ├── libmodbus_3.0.6.bb │ │ │ └── libmodbus_3.1.4.bb │ │ ├── libqb │ │ │ └── libqb_0.17.2.bb │ │ ├── libuio │ │ │ ├── libuio │ │ │ │ └── replace_inline_with_static-inline.patch │ │ │ └── libuio_0.2.1.bb │ │ ├── libwmf │ │ │ ├── libwmf │ │ │ │ ├── 0001-configure-use-pkg-config-for-freetype.patch │ │ │ │ ├── libwmf-0.2.8.4-intoverflow.patch │ │ │ │ └── libwmf-0.2.8.4-useafterfree.patch │ │ │ └── libwmf_0.2.8.4.bb │ │ ├── libx86-1 │ │ │ ├── libx86-1.1 │ │ │ │ ├── 0001-assume-zero-is-valid-address.patch │ │ │ │ ├── libx86-mmap-offset.patch │ │ │ │ └── makefile-add-ldflags.patch │ │ │ └── libx86-1_1.1.bb │ │ ├── lockfile-progs │ │ │ └── lockfile-progs_0.1.17.bb │ │ ├── logcheck │ │ │ └── logcheck_1.3.17.bb │ │ ├── logwatch │ │ │ └── logwatch_7.4.3.bb │ │ ├── lprng │ │ │ └── lprng_3.8.C.bb │ │ ├── lssci │ │ │ └── lsscsi_0.28.bb │ │ ├── md5deep │ │ │ ├── files │ │ │ │ ├── 0001-Fix-errors-found-by-clang.patch │ │ │ │ └── wrong-variable-expansion.patch │ │ │ └── md5deep_4.4.bb │ │ ├── mml-widget │ │ │ ├── gtkmathview │ │ │ │ ├── 0001-include-cstdio-to-get-printf-definitions.patch │ │ │ │ ├── 0002-configure.ac-header-detection-of-hash_map-is-broken-.patch │ │ │ │ ├── 0003-gcc-6.0-build-fixes.patch │ │ │ │ └── use_hostcxx.patch │ │ │ └── gtkmathview_0.8.0.bb │ │ ├── mozjs │ │ │ ├── mozjs │ │ │ │ ├── 0001-add-support-for-big-endian-32bit-ARM.patch │ │ │ │ ├── 0001-js.pc.in-do-not-include-RequiredDefines.h-for-depend.patch │ │ │ │ ├── 0001-mozjs17.0.0-fix-the-compile-bug-of-powerpc.patch │ │ │ │ ├── 0001-regenerate-configure.patch │ │ │ │ ├── 0002-Move-JS_BYTES_PER_WORD-out-of-config.h.patch │ │ │ │ ├── 0003-Add-AArch64-support.patch │ │ │ │ ├── 0004-mozbug746112-no-decommit-on-large-pages.patch │ │ │ │ ├── 0005-aarch64-64k-page.patch │ │ │ │ ├── 0010-fix-cross-compilation-on-i586-targets.patch │ │ │ │ ├── Manually_mmap_heap_memory_esr17.patch │ │ │ │ ├── fix-the-compile-error-of-powerpc64.patch │ │ │ │ └── fix_milestone_compile_issue.patch │ │ │ └── mozjs_17.0.0.bb │ │ ├── nana │ │ │ ├── nana │ │ │ │ ├── change-mandir-to-DESTDIR.patch │ │ │ │ └── modify-acinclude.m4-and-configure.in.patch │ │ │ └── nana_2.5.bb │ │ ├── nicstat │ │ │ └── nicstat_1.95.bb │ │ ├── openlmi │ │ │ ├── openlmi-networking │ │ │ │ └── 0001-fix-lib64-can-not-be-shiped-in-64bit-target.patch │ │ │ ├── openlmi-networking_0.3.1.bb │ │ │ ├── openlmi-providers │ │ │ │ ├── 0001-fix-error.patch │ │ │ │ └── 0001-fix-lib64-can-not-be-shiped-in-64bit-target.patch │ │ │ ├── openlmi-providers_0.6.0.bb │ │ │ ├── openlmi-storage_0.8.1.bb │ │ │ └── openlmi-tools_0.10.5.bb │ │ ├── openwsman │ │ │ ├── openwsman │ │ │ │ ├── libssl-is-required-if-eventint-supported.patch │ │ │ │ └── openwsmand.service │ │ │ └── openwsman_2.6.2.bb │ │ ├── p7zip │ │ │ ├── files │ │ │ │ └── do_not_override_compiler_and_do_not_strip.patch │ │ │ └── p7zip_16.02.bb │ │ ├── p8platform │ │ │ └── p8platform_git.bb │ │ ├── polkit │ │ │ ├── files │ │ │ │ ├── 50-org.freedesktop.NetworkManager.rules │ │ │ │ ├── 50-org.freedesktop.timedate1.rules │ │ │ │ └── gtk-doc-check.patch │ │ │ ├── polkit-gnome_0.105.bb │ │ │ ├── polkit-group-rule-datetime.bb │ │ │ ├── polkit-group-rule-network.bb │ │ │ ├── polkit-group-rule.inc │ │ │ ├── polkit │ │ │ │ ├── 0001-make-netgroup-support-configurable.patch │ │ │ │ └── polkit-1_pam.patch │ │ │ └── polkit_0.113.bb │ │ ├── pywbem │ │ │ └── pywbem_0.8.0.bb │ │ ├── rarpd │ │ │ ├── rarpd │ │ │ │ ├── 0001-rarpd.8-add-man-file.patch │ │ │ │ ├── 0002-Makefile-modify-compile-parameters.patch │ │ │ │ ├── 0003-rarpd.c-bug-fix.patch │ │ │ │ ├── 0004-rarpd.init-add-new-init-file.patch │ │ │ │ ├── 0005-ethernet.c-remove-it.patch │ │ │ │ ├── ethers.sample │ │ │ │ └── rarpd.service │ │ │ └── rarpd_ss981107.bb │ │ ├── redis │ │ │ ├── redis │ │ │ │ ├── hiredis-update-Makefile-to-add-symbols-to-staticlib.patch │ │ │ │ ├── hiredis-use-default-CC-if-it-is-set.patch │ │ │ │ ├── init-redis-server │ │ │ │ ├── lua-update-Makefile-to-use-environment-build-setting.patch │ │ │ │ ├── oe-use-libc-malloc.patch │ │ │ │ └── redis.conf │ │ │ └── redis_3.0.2.bb │ │ ├── rrdtool │ │ │ └── rrdtool_1.6.0.bb │ │ ├── rsyslog │ │ │ ├── libfastjson_0.99.4.bb │ │ │ ├── librelp_1.2.12.bb │ │ │ ├── rsyslog │ │ │ │ ├── initscript │ │ │ │ ├── rsyslog-fix-ptest-not-finish.patch │ │ │ │ ├── rsyslog.conf │ │ │ │ ├── rsyslog.logrotate │ │ │ │ ├── run-ptest │ │ │ │ └── use-pkgconfig-to-check-libgcrypt.patch │ │ │ └── rsyslog_8.22.0.bb │ │ ├── sblim-cmpi-devel │ │ │ ├── sblim-cmpi-devel │ │ │ │ └── sblim-cmpi-devel-2.0.3-docdir.patch │ │ │ └── sblim-cmpi-devel_2.0.3.bb │ │ ├── sblim-sfc-common │ │ │ └── sblim-sfc-common_1.0.1.bb │ │ ├── sblim-sfcb │ │ │ ├── files │ │ │ │ └── sfcb.service │ │ │ ├── sblim-sfcb-1.4.9 │ │ │ │ ├── sblim-sfcb-1.3.15-fix-provider-debugging.patch │ │ │ │ ├── sblim-sfcb-1.3.16-maxMsgLen.patch │ │ │ │ ├── sblim-sfcb-1.3.16-multilib-man-cfg.patch │ │ │ │ ├── sblim-sfcb-1.3.9-sfcbrepos-schema-location.patch │ │ │ │ ├── sblim-sfcb-1.4.5-service.patch │ │ │ │ ├── sblim-sfcb-1.4.8-default-ecdh-curve-name.patch │ │ │ │ └── sblim-sfcb-1.4.9-fix-ftbfs.patch │ │ │ └── sblim-sfcb_1.4.9.bb │ │ ├── sblim-sfcc │ │ │ └── sblim-sfcc_2.2.8.bb │ │ ├── scsirastools │ │ │ └── scsirastools_1.6.4.bb │ │ ├── sgpio │ │ │ ├── sgpio │ │ │ │ └── Makefile-error-fix.patch │ │ │ └── sgpio_1.2.0.10.bb │ │ ├── smartmontools │ │ │ ├── files │ │ │ │ ├── initd.smartd │ │ │ │ ├── smartd.service │ │ │ │ └── smartmontools.default │ │ │ └── smartmontools_6.5.bb │ │ ├── socketcan │ │ │ ├── can-utils_git.bb │ │ │ ├── canutils │ │ │ │ └── 0001-canutils-candump-Add-error-frame-s-handling.patch │ │ │ ├── canutils_4.0.6.bb │ │ │ └── libsocketcan_0.0.10.bb │ │ ├── subsurface │ │ │ └── subsurface_git.bb │ │ ├── sysdig │ │ │ ├── sysdig │ │ │ │ ├── 0001-Fix-build-with-musl-backtrace-APIs-are-glibc-specifi.patch │ │ │ │ └── 0001-libsinsp-Port-to-build-with-lua-5.2.patch │ │ │ └── sysdig_git.bb │ │ ├── t1lib │ │ │ ├── t1lib-5.1.2 │ │ │ │ ├── configure.patch │ │ │ │ └── libtool.patch │ │ │ └── t1lib_5.1.2.bb │ │ ├── tcsh │ │ │ ├── files │ │ │ │ ├── 01_build.1.patch │ │ │ │ ├── 01_build.2.patch │ │ │ │ ├── 01_build.3.patch │ │ │ │ ├── 12_unknown_lscolors.patch │ │ │ │ ├── 15_no-strip.patch │ │ │ │ ├── disable-broken-test.patch │ │ │ │ ├── disable-lexical.at-31.patch │ │ │ │ ├── disable-test-nice.patch │ │ │ │ ├── disable-test-notty.patch │ │ │ │ ├── fix-gcc6-wait-union.patch │ │ │ │ └── tcsh-6.17.02-multibyte.patch │ │ │ └── tcsh_6.18.01.bb │ │ ├── testfloat │ │ │ ├── files │ │ │ │ ├── 0001-Makefile-for-cross-compile-SoftFloat.patch │ │ │ │ └── 0002-Makefile-for-cross-compile-TestFloat.patch │ │ │ └── testfloat_3a.bb │ │ ├── tipcutils │ │ │ └── tipcutils_2.2.0.bb │ │ ├── tiptop │ │ │ └── tiptop_2.3.bb │ │ ├── tmux │ │ │ └── tmux_2.1.bb │ │ ├── uml-utilities │ │ │ ├── uml-utilities-20040406 │ │ │ │ ├── fix-ldflags.patch │ │ │ │ └── unstrip.patch │ │ │ └── uml-utilities_20040406.bb │ │ ├── wipe │ │ │ ├── files │ │ │ │ ├── makefile-add-ldflags.patch │ │ │ │ └── support-cross-compile-for-linux.patch │ │ │ └── wipe_git.bb │ │ ├── zram │ │ │ ├── zram │ │ │ │ ├── init │ │ │ │ └── zram.service │ │ │ └── zram_0.1.bb │ │ └── zsh │ │ │ └── zsh_5.0.5.bb │ ├── recipes-gnome │ │ ├── atk │ │ │ └── atkmm_2.22.7.bb │ │ ├── gnome-doc-utils-stub │ │ │ ├── files │ │ │ │ └── gnome-doc-utils.m4 │ │ │ └── gnome-doc-utils-stub_1.0.bb │ │ ├── gtk+ │ │ │ └── gtkmm_2.24.3.bb │ │ ├── gtkextra │ │ │ ├── files │ │ │ │ └── remove-tutorial.patch │ │ │ └── gtkextra_3.0.5.bb │ │ ├── gtkhtml2 │ │ │ ├── files │ │ │ │ └── 0001-tests-main.c-fix-build-with-glib-2.36.patch │ │ │ └── gtkhtml2_svn.bb │ │ ├── libglade │ │ │ ├── libglade-2.6.4 │ │ │ │ ├── glade-cruft.patch │ │ │ │ ├── no-xml2.patch │ │ │ │ └── python_environment.patch │ │ │ └── libglade_2.6.4.bb │ │ ├── libunique │ │ │ ├── libunique │ │ │ │ ├── 0001-Makefile.am-use-LIBTOOL-instead-of-hardcoded-libtool.patch │ │ │ │ ├── build.patch │ │ │ │ ├── fix_for_compile_with_gcc-4.6.0.patch │ │ │ │ └── noconst.patch │ │ │ └── libunique_1.1.6.bb │ │ └── vte9 │ │ │ ├── vte9.inc │ │ │ ├── vte9 │ │ │ ├── cve-2012-2738.patch │ │ │ └── obsolete_automake_macros.patch │ │ │ └── vte9_0.28.2.bb │ ├── recipes-graphics │ │ ├── assimp │ │ │ └── assimp_3.1.1.bb │ │ ├── babl │ │ │ └── babl_0.1.16.bb │ │ ├── cairo │ │ │ └── cairomm_1.11.2.bb │ │ ├── clutter │ │ │ ├── clutter-box2d.inc │ │ │ └── clutter-box2d_git.bb │ │ ├── dietsplash │ │ │ └── dietsplash_git.bb │ │ ├── directfb │ │ │ ├── directfb-examples │ │ │ │ └── configure.in-Fix-string-argument-syntax.patch │ │ │ ├── directfb-examples_1.7.0.bb │ │ │ ├── directfb.inc │ │ │ ├── directfb │ │ │ │ ├── 0001-gfx-direct-Aboid-usng-VLAs-and-printf-formats.patch │ │ │ │ ├── bashism.patch │ │ │ │ ├── compar_fn_t.patch │ │ │ │ ├── configurefix.patch │ │ │ │ ├── fix-client-gfx_state-initialisation.patch │ │ │ │ ├── fusion.patch │ │ │ │ ├── union-sigval.patch │ │ │ │ └── use-PTHREAD_MUTEX_RECURSIVE.patch │ │ │ └── directfb_1.7.7.bb │ │ ├── fbgrab │ │ │ └── fbgrab_1.2.bb │ │ ├── fbida │ │ │ └── fbida_2.10.bb │ │ ├── fim │ │ │ ├── files │ │ │ │ └── cross_cc.patch │ │ │ └── fim_0.4-rc1.bb │ │ ├── fontforge │ │ │ └── fontforge_20150824.bb │ │ ├── freeglut │ │ │ └── freeglut_3.0.0.bb │ │ ├── gegl │ │ │ ├── gegl │ │ │ │ └── pkgconfig.patch │ │ │ └── gegl_0.3.4.bb │ │ ├── gimp │ │ │ ├── gimp │ │ │ │ ├── 0001-configure-ac-do-not-check-for-freetype-config.patch │ │ │ │ └── bump_Babl-GEGL_versions.patch │ │ │ └── gimp_2.8.18.bb │ │ ├── glcompbench │ │ │ ├── glcompbench │ │ │ │ ├── 0001-build-Specify-std-c-11-on-cmdline.patch │ │ │ │ ├── Fix-configure-for-sqrt-check.patch │ │ │ │ ├── Fix_auto_ptr_deprecated.patch │ │ │ │ ├── Fix_space_issues.patch │ │ │ │ └── glbench-compile-fix.patch │ │ │ └── glcompbench_2012.08.bb │ │ ├── gphoto2 │ │ │ ├── gphoto2-2.5.8 │ │ │ │ ├── 0001-configure.ac-remove-AM_PO_SUBDIRS.patch │ │ │ │ └── 0002-Look-for-popt-with-GP_CHECK_LIBRARY-function.patch │ │ │ ├── gphoto2_2.5.8.bb │ │ │ ├── libgphoto2-2.5.8 │ │ │ │ ├── 0001-configure.ac-remove-AM_PO_SUBDIRS.patch │ │ │ │ ├── 0002-correct-jpeg-memsrcdest-support.patch │ │ │ │ ├── 10-camera-libgphoto2-device.fdi │ │ │ │ ├── 10-camera-libgphoto2.fdi │ │ │ │ ├── 40-libgphoto2.rules │ │ │ │ └── avoid_using_sprintf.patch │ │ │ └── libgphoto2_2.5.8.bb │ │ ├── gtkperf │ │ │ ├── gtkperf │ │ │ │ └── Makevars │ │ │ └── gtkperf_0.40.bb │ │ ├── jasper │ │ │ └── jasper_1.900.1.bb │ │ ├── leptonica │ │ │ └── leptonica_1.73.bb │ │ ├── libsexy │ │ │ ├── libsexy.inc │ │ │ ├── libsexy │ │ │ │ └── libsexy-pkgconfig-fixes.patch │ │ │ └── libsexy_0.1.11.bb │ │ ├── libvncserver │ │ │ ├── libvncserver │ │ │ │ ├── 0001-remove-webclients-build.patch │ │ │ │ └── 0002-common-add-sha1.patch │ │ │ └── libvncserver_0.9.10.bb │ │ ├── lxdm │ │ │ ├── lxdm │ │ │ │ ├── 0001-lxdm.conf.in-blacklist-root-for-release-images.patch │ │ │ │ ├── 0002-let-autotools-create-lxdm.conf.patch │ │ │ │ ├── lxdm-pam │ │ │ │ ├── lxdm-pam-debug │ │ │ │ └── lxdm.conf │ │ │ └── lxdm_0.5.3.bb │ │ ├── numlockx │ │ │ └── numlockx_1.2.bb │ │ ├── openbox │ │ │ ├── files │ │ │ │ └── 0001-Makefile.am-avoid-race-when-creating-autostart-direc.patch │ │ │ └── openbox_3.6.1.bb │ │ ├── openjpeg │ │ │ └── openjpeg_2.1.1.bb │ │ ├── packagegroups │ │ │ └── packagegroup-fonts-truetype.bb │ │ ├── pango │ │ │ └── pangomm_2.36.0.bb │ │ ├── qrencode │ │ │ └── qrencode_git.bb │ │ ├── slim │ │ │ ├── slim │ │ │ │ ├── 0002-Fix-image-handling-integer-overflows.patch │ │ │ │ ├── 0003-Fix-build-failure-with-ld-as-needed.patch │ │ │ │ ├── 0004-Add-support-libpng15.patch │ │ │ │ ├── 0005-Remove-path-of-gcc-amd-g-and-version-of-g.patch │ │ │ │ ├── 0006-Remove-localhost-from-Authenticator-of-pam.patch │ │ │ │ ├── 0007-Fix-tty-slowness.patch │ │ │ │ ├── 0008-restart-Xserver-if-killed.patch │ │ │ │ ├── Makefile.oe │ │ │ │ ├── slim-dynwm │ │ │ │ ├── slim.pamd │ │ │ │ ├── slim.service │ │ │ │ └── update_slim_wmlist │ │ │ └── slim_1.3.2.bb │ │ ├── takao-fonts │ │ │ └── takao-fonts_003.03.01.bb │ │ ├── terminus-font │ │ │ └── terminus-font_4.38.bb │ │ ├── tesseract │ │ │ ├── tesseract-lang_git.bb │ │ │ └── tesseract_git.bb │ │ ├── tslib │ │ │ ├── tslib │ │ │ │ ├── ts.conf │ │ │ │ └── tslib.sh │ │ │ └── tslib_1.1.bb │ │ ├── ttf-fonts │ │ │ ├── source-han-sans-cn-fonts │ │ │ │ └── 44-source-han-sans-cn.conf │ │ │ ├── source-han-sans-cn-fonts_1.004.bb │ │ │ ├── source-han-sans-jp-fonts │ │ │ │ └── 44-source-han-sans-jp.conf │ │ │ ├── source-han-sans-jp-fonts_1.004.bb │ │ │ ├── source-han-sans-kr-fonts │ │ │ │ └── 44-source-han-sans-kr.conf │ │ │ ├── source-han-sans-kr-fonts_1.004.bb │ │ │ ├── source-han-sans-tw-fonts │ │ │ │ └── 44-source-han-sans-tw.conf │ │ │ ├── source-han-sans-tw-fonts_1.004.bb │ │ │ ├── ttf-abyssinica_1.500.bb │ │ │ ├── ttf-arphic-uming_20080216.bb │ │ │ ├── ttf-dejavu │ │ │ │ └── 30-dejavu-aliases.conf │ │ │ ├── ttf-dejavu_2.37.bb │ │ │ ├── ttf-droid_git.bb │ │ │ ├── ttf-gentium_1.02.bb │ │ │ ├── ttf-hunkyfonts_0.3.0.bb │ │ │ ├── ttf-inconsolata │ │ │ │ └── OFL.txt │ │ │ ├── ttf-inconsolata_20100526.bb │ │ │ ├── ttf-liberation-sans-narrow │ │ │ │ └── 30-0-liberation-sans-narrow.conf │ │ │ ├── ttf-liberation-sans-narrow_1.07.4.bb │ │ │ ├── ttf-liberation_0.2.bb │ │ │ ├── ttf-lklug_0.6-14.20090803cvs.fc24.bb │ │ │ ├── ttf-lohit_2.bb │ │ │ ├── ttf-mplus_027.bb │ │ │ ├── ttf-pt-sans_1.1.bb │ │ │ ├── ttf-sazanami_20040629.bb │ │ │ ├── ttf-tlwg_0.6.1.bb │ │ │ ├── ttf-ubuntu-font-family_0.80.bb │ │ │ ├── ttf-vlgothic_20141206.bb │ │ │ ├── ttf-wqy-zenhei_0.9.45.bb │ │ │ └── ttf.inc │ │ ├── vdpau │ │ │ └── libvdpau_git.bb │ │ ├── wayland │ │ │ └── wayland-fits_git.bb │ │ ├── x11vnc │ │ │ ├── files │ │ │ │ ├── endian-fix.patch │ │ │ │ ├── remove-redundant-RPATH.patch │ │ │ │ └── starting-fix.patch │ │ │ └── x11vnc_0.9.13.bb │ │ ├── xcursorgen │ │ │ └── xcursorgen_1.0.5.bb │ │ ├── xdotool │ │ │ └── xdotool_1.20100416.2809.bb │ │ ├── xorg-app │ │ │ ├── bdftopcf_1.0.5.bb │ │ │ ├── iceauth_1.0.7.bb │ │ │ ├── sessreg │ │ │ │ └── 0001-Makefile.am-Error-Fix.patch │ │ │ ├── sessreg_1.1.0.bb │ │ │ ├── setxkbmap_1.3.1.bb │ │ │ ├── twm_1.0.9.bb │ │ │ ├── xclock_1.0.5.bb │ │ │ ├── xfontsel_1.0.5.bb │ │ │ ├── xgamma_1.0.6.bb │ │ │ ├── xkbevd_1.1.4.bb │ │ │ ├── xkbprint_1.0.4.bb │ │ │ ├── xkbutils_1.0.4.bb │ │ │ ├── xlsatoms_1.1.2.bb │ │ │ ├── xlsclients_1.1.3.bb │ │ │ ├── xlsfonts_1.0.5.bb │ │ │ ├── xmag_1.0.5.bb │ │ │ ├── xmessage_1.0.4.bb │ │ │ ├── xrdb_1.1.0.bb │ │ │ ├── xrefresh_1.0.5.bb │ │ │ ├── xsetmode_1.0.0.bb │ │ │ ├── xsetroot_1.1.1.bb │ │ │ ├── xstdcmap_1.0.3.bb │ │ │ ├── xterm_325.bb │ │ │ ├── xwd_1.0.6.bb │ │ │ └── xwud_1.0.4.bb │ │ ├── xorg-data │ │ │ ├── xbitmaps_1.1.1.bb │ │ │ └── xorg-data-common.inc │ │ ├── xorg-doc │ │ │ ├── xorg-doc-common.inc │ │ │ └── xorg-sgml-doctools_1.7.bb │ │ ├── xorg-driver │ │ │ ├── xf86-input-mtev │ │ │ │ └── fix-it.patch │ │ │ ├── xf86-input-mtev_git.bb │ │ │ ├── xf86-input-tslib │ │ │ │ ├── 10-x11-input-tslib.fdi │ │ │ │ ├── 99-xf86-input-tslib.rules │ │ │ │ ├── double-free-crash.patch │ │ │ │ ├── xf86-input-tslib-0.0.6-xf86XInputSetScreen.patch │ │ │ │ ├── xf86-input-tslib-port-ABI-12-r48.patch │ │ │ │ └── xserver-174-XGetPointerControl.patch │ │ │ ├── xf86-input-tslib_0.0.6.bb │ │ │ ├── xf86-input-void_1.4.1.bb │ │ │ ├── xf86-video-ati_7.6.1.bb │ │ │ ├── xf86-video-geode │ │ │ │ └── 0001-Add-config.h-include-to-src-lx_memory.c.patch │ │ │ ├── xf86-video-geode_2.11.16.bb │ │ │ ├── xf86-video-glamo │ │ │ │ ├── 0001-fix-build-with-KMS-disabled.patch │ │ │ │ ├── 0001-glamo-driver-remove-references-to-mibstore.patch │ │ │ │ ├── 0001-glamo-kms-driver-drop-unused-xf86_config.patch │ │ │ │ ├── 0003-glamo-driver-adapt-to-xserver-0.13-video-API.patch │ │ │ │ └── 0004-glamo.h-use-const-for-jbt6k74_state_path.patch │ │ │ ├── xf86-video-glamo_git.bb │ │ │ └── xf86-video-nouveau_1.0.12.bb │ │ ├── xorg-font │ │ │ ├── font-adobe-100dpi_1.0.3.bb │ │ │ ├── font-adobe-utopia-100dpi_1.0.4.bb │ │ │ ├── font-bh-100dpi_1.0.3.bb │ │ │ ├── font-bh-lucidatypewriter-100dpi_1.0.3.bb │ │ │ ├── font-bitstream-100dpi_1.0.3.bb │ │ │ ├── font-cursor-misc_1.0.3.bb │ │ │ ├── font-misc-misc_1.1.2.bb │ │ │ └── xorg-fonts-100dpi.bb │ │ ├── xorg-lib │ │ │ ├── liblbxutil-1.1.0 │ │ │ │ └── mkg3states-1.1.patch │ │ │ ├── liblbxutil_1.1.0.bb │ │ │ ├── libxaw_1.0.13.bb │ │ │ └── libxkbui_1.0.2.bb │ │ ├── xserver-common │ │ │ ├── xserver-common-1.34 │ │ │ │ ├── 0001-COPYING-add-GPLv2-license-file.patch │ │ │ │ ├── 0001-Don-t-install-Xsession-or-Xserver.patch │ │ │ │ ├── 0002-add-setdpi-Xinit.d-script.patch │ │ │ │ ├── 0006-add-support-for-etc-X11-xserver-system.patch │ │ │ │ ├── 0007-use-own-functions-file-instead-etc-init.d-functions.patch │ │ │ │ ├── 0008-xserver-common-add-dpi-and-nocursor-params-for-gta01.patch │ │ │ │ ├── 0009-xserver-common-add-support-for-n900-alias-nokia_rx-5.patch │ │ │ │ ├── 0010-xserver-common-add-support-for-nexus-S-alias-herring.patch │ │ │ │ ├── 0011-xserver-common-add-support-for-nexus-one-alias-mahim.patch │ │ │ │ ├── 0012-xserver-common-add-support-for-gta04-alias-OpenPhoen.patch │ │ │ │ ├── 0013-xserver-common-add-support-for-tuna-alias-Galaxy-Nex.patch │ │ │ │ └── 0015-xserver-common-disable-TCP-connections.patch │ │ │ └── xserver-common_1.34.bb │ │ └── xtscal │ │ │ ├── xtscal │ │ │ ├── 30xTs_Calibrate.sh │ │ │ ├── change-cross.patch │ │ │ ├── cleanup.patch │ │ │ └── dso_linking_change_build_fix.patch │ │ │ └── xtscal_0.6.3.bb │ ├── recipes-kernel │ │ ├── crash │ │ │ ├── crash │ │ │ │ ├── 0001-cross_add_configure_option.patch │ │ │ │ ├── 7001force_define_architecture.patch │ │ │ │ ├── 7003cross_ranlib.patch │ │ │ │ ├── config-site.crash-7.0.9 │ │ │ │ ├── donnot-extract-gdb-during-do-compile.patch │ │ │ │ ├── gdb_build_jobs_and_not_write_crash_target.patch │ │ │ │ ├── remove-unrecognized-gcc-option-m32-for-mips.patch │ │ │ │ ├── sim-common-sim-arange-fix-extern-inline-handling.patch │ │ │ │ └── sim-ppc-drop-LIBS-from-psim-dependency.patch │ │ │ └── crash_7.1.5.bb │ │ ├── ktap │ │ │ ├── ktap-module_git.bb │ │ │ ├── ktap.inc │ │ │ └── ktap_git.bb │ │ ├── linux │ │ │ └── linux.inc │ │ ├── makedumpfile │ │ │ ├── makedumpfile │ │ │ │ └── 0001-makedumpfile-replace-hardcode-CFLAGS.patch │ │ │ └── makedumpfile_1.6.0.bb │ │ └── minicoredumper │ │ │ ├── files │ │ │ ├── minicoredumper.init │ │ │ └── minicoredumper.service │ │ │ └── minicoredumper_1.0.2.bb │ ├── recipes-multimedia │ │ ├── alsa │ │ │ ├── alsa-oss-1.0.17 │ │ │ │ └── libio.patch │ │ │ └── alsa-oss_1.0.17.bb │ │ ├── audiofile │ │ │ └── audiofile_0.2.7.bb │ │ ├── cdrkit │ │ │ ├── cdrkit_1.1.11.bb │ │ │ └── files │ │ │ │ └── 0001-do-not-create-a-run-test-to-determine-order-of-bitfi.patch │ │ ├── esound │ │ │ ├── esound │ │ │ │ ├── configure-fix.patch │ │ │ │ ├── esound_0.2.36-1ubuntu5.diff.gz │ │ │ │ └── no-docs.patch │ │ │ └── esound_0.2.36.bb │ │ ├── faad2 │ │ │ └── faad2_2.7.bb │ │ ├── id3lib │ │ │ ├── id3lib │ │ │ │ └── acdefine.patch │ │ │ └── id3lib_3.8.3.bb │ │ ├── jack │ │ │ ├── a2jmidid │ │ │ │ └── 0001-wscript-add-pthread-library-dependency-to-fix-linkin.patch │ │ │ ├── a2jmidid_8.bb │ │ │ └── jack_git.bb │ │ ├── libass │ │ │ ├── libass.inc │ │ │ └── libass_0.13.2.bb │ │ ├── libburn │ │ │ └── libburn_1.4.0.bb │ │ ├── libcdio │ │ │ └── libcdio_0.93.bb │ │ ├── libdvdread │ │ │ └── libdvdread_5.0.3.bb │ │ ├── libmad │ │ │ ├── libmad │ │ │ │ ├── 0004-Remove-clang-unsupported-compiler-flags.patch │ │ │ │ ├── add-pkgconfig.patch │ │ │ │ ├── automake-foreign.patch │ │ │ │ ├── fix_for_mips_with_gcc-4.5.0.patch │ │ │ │ ├── no-force-mem.patch │ │ │ │ └── obsolete_automake_macros.patch │ │ │ └── libmad_0.15.1b.bb │ │ ├── libmms │ │ │ └── libmms_0.6.4.bb │ │ ├── libmodplug │ │ │ └── libmodplug_0.8.8.5.bb │ │ ├── libopus │ │ │ └── libopus_1.1.2.bb │ │ ├── libsdl-image │ │ │ ├── libsdl-image │ │ │ │ └── configure.patch │ │ │ ├── libsdl-image_1.2.12.bb │ │ │ └── libsdl2-image_2.0.1.bb │ │ ├── libsdl-mixer │ │ │ ├── libsdl-mixer │ │ │ │ └── configure.patch │ │ │ ├── libsdl-mixer_1.2.12.bb │ │ │ └── libsdl2-mixer_2.0.1.bb │ │ ├── live555 │ │ │ ├── files │ │ │ │ └── config.linux-cross │ │ │ ├── live555.inc │ │ │ └── live555_20130430.bb │ │ ├── mikmod │ │ │ └── libmikmod_3.3.6.bb │ │ ├── minidlna │ │ │ ├── minidlna.inc │ │ │ ├── minidlna │ │ │ │ ├── minidlna-daemon.init.d │ │ │ │ └── minidlna.service │ │ │ └── minidlna_1.1.5.bb │ │ ├── mplayer │ │ │ ├── mplayer-common.bb │ │ │ ├── mplayer-common │ │ │ │ └── mplayer.conf │ │ │ ├── mplayer2 │ │ │ │ ├── 0001-configure-don-t-disable-ASS-support-when-explicitly-.patch │ │ │ │ └── 0001-demux_ogg-partially-port-libtheora-glue-code-to-Theo.patch │ │ │ ├── mplayer2_git.bb │ │ │ └── mpv_0.15.0.bb │ │ ├── opus-tools │ │ │ └── opus-tools_0.1.8.bb │ │ ├── pulseaudio │ │ │ └── pavucontrol_3.0.bb │ │ ├── sound-themes │ │ │ └── sound-theme-freedesktop_0.8.bb │ │ ├── v4l2apps │ │ │ ├── v4l-utils │ │ │ │ ├── 0001-Revert-media-ctl-Don-t-install-libmediactl-and-libv4.patch │ │ │ │ ├── export-mediactl-headers.patch │ │ │ │ └── mediactl-pkgconfig.patch │ │ │ ├── v4l-utils_1.10.1.bb │ │ │ ├── yavta │ │ │ │ └── 0001-Add-stdout-mode-to-allow-streaming-over-the-network-.patch │ │ │ └── yavta_git.bb │ │ ├── wavpack │ │ │ └── wavpack_4.60.1.bb │ │ ├── webm │ │ │ ├── libvpx │ │ │ │ └── libvpx-configure-support-blank-prefix.patch │ │ │ └── libvpx_1.5.0.bb │ │ ├── xpext │ │ │ ├── xpext │ │ │ │ └── auxdir.patch │ │ │ └── xpext_1.0-5.bb │ │ └── xsp │ │ │ ├── xsp │ │ │ └── xsp-fix-pc.patch │ │ │ └── xsp_1.0.0-8.bb │ ├── recipes-navigation │ │ ├── foxtrotgps │ │ │ └── foxtrotgps_1.1.1.bb │ │ ├── gdal │ │ │ └── gdal_1.11.1.bb │ │ ├── geoclue │ │ │ └── geoclue_2.4.4.bb │ │ ├── geos │ │ │ ├── files │ │ │ │ ├── fix-gcc6-isnan.patch │ │ │ │ └── geos-config-Add-includedir-variable.patch │ │ │ ├── geos.inc │ │ │ └── geos_3.4.2.bb │ │ ├── gpsd │ │ │ ├── gpsd-3.14 │ │ │ │ ├── 0001-Check-for-__STDC_NO_ATOMICS__-before-using-stdatomic.patch │ │ │ │ ├── 0001-Include-stdatomic.h-only-in-C-mode.patch │ │ │ │ ├── 0001-SConstruct-prefix-includepy-with-sysroot-and-drop-sy.patch │ │ │ │ ├── 0001-SConstruct-respect-sysroot-also-in-SPLINTOPTS.patch │ │ │ │ ├── 0001-include-sys-ttydefaults.h.patch │ │ │ │ ├── 0001-libgpsd-core-Fix-issue-with-ACTIVATE-hook-not-being-.patch │ │ │ │ ├── 0002-Add-a-test-for-C11-and-check-we-have-C11-before-usin.patch │ │ │ │ ├── 0002-SConstruct-remove-rpath.patch │ │ │ │ ├── 0003-Whoops-check-for-C11-not-for-not-C11-in-stdatomic.h-.patch │ │ │ │ └── 0004-SConstruct-disable-html-and-man-docs-building-becaus.patch │ │ │ ├── gpsd-machine-conf_1.0.bb │ │ │ ├── gpsd │ │ │ │ ├── 60-gpsd.rules │ │ │ │ ├── gpsd │ │ │ │ ├── gpsd-default │ │ │ │ └── gpsd.service │ │ │ └── gpsd_3.14.bb │ │ ├── gypsy │ │ │ ├── files │ │ │ │ ├── 0001-g_type_init-is-deprecated-for-glib-2.35.0.patch │ │ │ │ └── fixups.patch │ │ │ ├── gypsy.inc │ │ │ ├── gypsy_0.9.bb │ │ │ └── gypsy_git.bb │ │ ├── libspatialite │ │ │ ├── libspatialite-4.2.0 │ │ │ │ └── geos-config.patch │ │ │ └── libspatialite_4.2.0.bb │ │ ├── navit │ │ │ ├── navit-fpu.inc │ │ │ ├── navit.inc │ │ │ ├── navit │ │ │ │ ├── configure.add.imlib2.option.patch │ │ │ │ ├── freetype-include-path.patch │ │ │ │ ├── maps.xml │ │ │ │ ├── navit.xml │ │ │ │ ├── osd.xml │ │ │ │ ├── plugins.xml │ │ │ │ └── speech.xml │ │ │ └── navit_svn.bb │ │ ├── orrery │ │ │ ├── orrery │ │ │ │ ├── orrery.png │ │ │ │ └── use.GdkPixbuf.patch │ │ │ └── orrery_2.7.bb │ │ └── proj │ │ │ └── proj_4.8.0.bb │ ├── recipes-sato │ │ └── claws-mail │ │ │ ├── claws-mail_3.9.0.bb │ │ │ ├── claws-plugin-gtkhtml2-viewer │ │ │ └── configure.patch │ │ │ ├── claws-plugin-gtkhtml2-viewer_0.31.bb │ │ │ ├── claws-plugin-mailmbox_1.15.bb │ │ │ ├── claws-plugin-rssyl │ │ │ └── configure.patch │ │ │ ├── claws-plugin-rssyl_0.34.bb │ │ │ ├── sylpheed │ │ │ └── glib-2.32.patch │ │ │ └── sylpheed_2.7.1.bb │ ├── recipes-support │ │ ├── anthy │ │ │ ├── anthy │ │ │ │ ├── 2ch_t.patch │ │ │ │ ├── native-helpers.patch │ │ │ │ ├── not_build_elc.patch │ │ │ │ └── target-helpers.patch │ │ │ └── anthy_9100h.bb │ │ ├── apcupsd │ │ │ └── apcupsd_3.14.10.bb │ │ ├── asio │ │ │ ├── asio.inc │ │ │ ├── asio │ │ │ │ ├── 0001-Automatically-handle-glibc-variant-of-strerror_r-wit.patch │ │ │ │ └── 0001-use-POSIX-poll.h-instead-of-sys-poll.h.patch │ │ │ └── asio_1.10.6.bb │ │ ├── atop │ │ │ ├── atop │ │ │ │ ├── fix-permissions.patch │ │ │ │ ├── remove-bashisms.patch │ │ │ │ ├── sysvinit-implement-status.patch │ │ │ │ ├── volatiles.99_atop │ │ │ │ └── volatiles.atop.conf │ │ │ └── atop_2.2.3.bb │ │ ├── augeas │ │ │ ├── augeas.inc │ │ │ ├── augeas │ │ │ │ ├── 0001-Unset-need_charset_alias-when-building-for-musl.patch │ │ │ │ ├── add-missing-argz-conditional.patch │ │ │ │ └── sepbuildfix.patch │ │ │ └── augeas_1.5.0.bb │ │ ├── canonical-multitouch │ │ │ ├── frame │ │ │ │ └── pessimizing-move.patch │ │ │ ├── frame_2.5.0.bb │ │ │ ├── geis │ │ │ │ └── fix-indentation-for-gcc6.patch │ │ │ ├── geis_2.2.17.bb │ │ │ └── grail_3.1.1.bb │ │ ├── ccid │ │ │ ├── ccid │ │ │ │ └── no-dep-on-libfl.patch │ │ │ └── ccid_1.4.24.bb │ │ ├── ckermit │ │ │ └── ckermit_302.bb │ │ ├── cpufrequtils │ │ │ ├── cpufrequtils │ │ │ │ └── 0001-dont-unset-cflags.patch │ │ │ └── cpufrequtils_008.bb │ │ ├── cryptsetup │ │ │ └── cryptsetup_1.7.2.bb │ │ ├── ctapi-common │ │ │ └── ctapi-common_1.1-14.bb │ │ ├── daemonize │ │ │ ├── daemonize_git.bb │ │ │ └── files │ │ │ │ └── fix-ldflags-for-gnuhash.patch │ │ ├── daemontools │ │ │ ├── daemontools │ │ │ │ ├── 0001-daemontools-Fix-QA-Issue.patch │ │ │ │ ├── 0001-daemontools-native-Fix-a-warning.patch │ │ │ │ ├── 0001-error.h-include-errno.h-instead-of-extern-int.diff │ │ │ │ ├── 0002-supervise.c-.-supervise-may-be-a-symlink-if-it-s-da.diff │ │ │ │ └── cross-compile.patch │ │ │ └── daemontools_0.76.bb │ │ ├── devmem2 │ │ │ ├── devmem2.bb │ │ │ └── devmem2 │ │ │ │ └── devmem2-fixups-2.patch │ │ ├── dfu-util │ │ │ ├── dfu-util-native_0.9.bb │ │ │ ├── dfu-util │ │ │ │ └── 0001-Revert-Makefile.am-Drop-static-dfu-util.patch │ │ │ └── dfu-util_0.9.bb │ │ ├── digitemp │ │ │ ├── digitemp │ │ │ │ └── makefile-fix.patch │ │ │ └── digitemp_3.6.0.bb │ │ ├── dstat │ │ │ └── dstat_0.7.3.bb │ │ ├── edac-utils │ │ │ ├── edac-utils_git.bb │ │ │ └── files │ │ │ │ ├── add-restart-to-initscript.patch │ │ │ │ ├── edac.service │ │ │ │ └── make-init-script-be-able-to-automatically-load-EDAC-.patch │ │ ├── eject │ │ │ ├── eject │ │ │ │ ├── eject-2.1.1-verbose.patch │ │ │ │ ├── eject-2.1.5-error-return.patch │ │ │ │ ├── eject-2.1.5-spaces.patch │ │ │ │ └── eject-timeout.patch │ │ │ └── eject_2.1.5.bb │ │ ├── emacs │ │ │ ├── emacs-23.4 │ │ │ │ ├── nostdlib-unwind.patch │ │ │ │ └── use-qemu.patch │ │ │ ├── emacs.inc │ │ │ └── emacs_23.4.bb │ │ ├── enca │ │ │ ├── enca │ │ │ │ ├── configure-hack.patch │ │ │ │ ├── configure-remove-dumbness.patch │ │ │ │ ├── dont-run-tests.patch │ │ │ │ ├── libenca-003-iconv.patch │ │ │ │ └── makefile-remove-tools.patch │ │ │ └── enca_1.9.bb │ │ ├── engine-pkcs11 │ │ │ └── engine-pkcs11_0.2.2.bb │ │ ├── epeg │ │ │ └── epeg_git.bb │ │ ├── espeak │ │ │ ├── espeak-data_1.37.bb │ │ │ ├── espeak.inc │ │ │ ├── espeak_1.37.bb │ │ │ └── files │ │ │ │ └── fix-gcc6-errors.patch │ │ ├── eventlog │ │ │ └── eventlog_0.2.13.bb │ │ ├── evtest │ │ │ └── evtest_git.bb │ │ ├── farsight │ │ │ ├── farsight2_0.0.22.bb │ │ │ └── libnice_0.0.13.bb │ │ ├── fbset │ │ │ ├── fbset-2.1 │ │ │ │ ├── fbset-2.1-fix-makefile-dep.patch │ │ │ │ └── makefile.patch │ │ │ ├── fbset-modes.bb │ │ │ ├── fbset-modes │ │ │ │ ├── fb.modes │ │ │ │ ├── om-gta01 │ │ │ │ │ └── fb.modes │ │ │ │ ├── omap3-pandora │ │ │ │ │ └── fb.modes │ │ │ │ ├── qemuarm │ │ │ │ │ └── fb.modes │ │ │ │ └── qemumips │ │ │ │ │ └── fb.modes │ │ │ ├── fbset │ │ │ │ └── 0001-fbset-including-asm-types.h-is-needed-on-all-linux-s.patch │ │ │ └── fbset_2.1.bb │ │ ├── fbtest │ │ │ └── fb-test_git.bb │ │ ├── fftw │ │ │ ├── benchfft_3.1.bb │ │ │ └── fftw_3.3.4.bb │ │ ├── flite │ │ │ ├── flite-alsa-1.3 │ │ │ │ ├── flite-1.3-alsa_support-1.2.diff │ │ │ │ └── flite-alsa-1.3-configure-with-audio.patch │ │ │ ├── flite-alsa_1.3.bb │ │ │ └── flite.inc │ │ ├── fltk │ │ │ ├── fltk │ │ │ │ ├── disable_test.patch │ │ │ │ ├── fix-boolean-issue-with-jpeg9.patch │ │ │ │ └── fltk-no-freetype-config.patch │ │ │ └── fltk_1.3.3.bb │ │ ├── freerdp │ │ │ ├── freerdp │ │ │ │ ├── 0001-FindGStreamer_1_0-fix-build-failure-for-new-gstreame.patch │ │ │ │ └── winpr-makecert-Build-with-install-RPATH.patch │ │ │ └── freerdp_git.bb │ │ ├── gd │ │ │ ├── files │ │ │ │ └── fix-gcc-unused-functions.patch │ │ │ └── gd_2.2.3.bb │ │ ├── gflags │ │ │ └── gflags_2.1.2.bb │ │ ├── glog │ │ │ ├── glog │ │ │ │ └── 0001-configure.ac-Allow-user-to-disable-gflags.patch │ │ │ └── glog_0.3.4.bb │ │ ├── gnulib │ │ │ └── gnulib_git.bb │ │ ├── gperftools │ │ │ └── gperftools_2.5.bb │ │ ├── gpm │ │ │ ├── gpm-1.99.7 │ │ │ │ ├── eglibc-2.17.patch │ │ │ │ ├── init │ │ │ │ ├── no-docs.patch │ │ │ │ ├── processcreds.patch │ │ │ │ └── remove_nested_functions.patch │ │ │ └── gpm_1.99.7.bb │ │ ├── gradm │ │ │ ├── gradm │ │ │ │ └── 0001-Makefile-remove-strip.patch │ │ │ └── gradm_3.1.bb │ │ ├── gsl │ │ │ ├── gsl.inc │ │ │ └── gsl_1.15.bb │ │ ├── gsoap │ │ │ └── gsoap_2.8.12.bb │ │ ├── hddtemp │ │ │ ├── hddtemp │ │ │ │ ├── hddtemp-0.3-beta15-autodetect-717479.patch │ │ │ │ ├── hddtemp-no-nls-support.patch │ │ │ │ ├── hddtemp.db │ │ │ │ ├── hddtemp_0.3-beta15-52.diff │ │ │ │ └── init │ │ │ └── hddtemp_0.3-beta15.bb │ │ ├── hidapi │ │ │ └── hidapi_git.bb │ │ ├── htop │ │ │ └── htop_1.0.3.bb │ │ ├── hunspell │ │ │ └── hunspell_1.3.3.bb │ │ ├── hwdata │ │ │ └── hwdata_0.291.bb │ │ ├── iksemel │ │ │ ├── iksemel-1.4 │ │ │ │ └── r25.diff │ │ │ └── iksemel_1.4.bb │ │ ├── imagemagick │ │ │ └── imagemagick_7.0.2.bb │ │ ├── inih │ │ │ └── libinih_git.bb │ │ ├── inotify-tools │ │ │ ├── inotify-tools │ │ │ │ └── inotifywait-fix-compile-error-with-GCC-6.patch │ │ │ └── inotify-tools_git.bb │ │ ├── ipmiutil │ │ │ ├── ipmiutil │ │ │ │ └── fix_systemd_path.patch │ │ │ └── ipmiutil_2.9.6.bb │ │ ├── joe │ │ │ ├── joe │ │ │ │ └── 0001-adjust-signature-of-main.patch │ │ │ └── joe_3.1.bb │ │ ├── lcms │ │ │ └── lcms_2.7.bb │ │ ├── lcov │ │ │ └── lcov_1.11.bb │ │ ├── libatasmart │ │ │ └── libatasmart_0.19.bb │ │ ├── libcanberra │ │ │ ├── files │ │ │ │ └── 0001-build-gtk-and-gtk3-version-for-canberra_gtk_play.patch │ │ │ └── libcanberra_0.30.bb │ │ ├── libdbi │ │ │ ├── libdbi-drivers.inc │ │ │ ├── libdbi-drivers_0.8.3-1.bb │ │ │ ├── libdbi.inc │ │ │ └── libdbi_0.9.0.bb │ │ ├── libee │ │ │ ├── libee.inc │ │ │ ├── libee │ │ │ │ ├── ezapi1.sh │ │ │ │ ├── libee-parallel-make.patch │ │ │ │ └── run-ptest │ │ │ └── libee_0.4.1.bb │ │ ├── libeigen │ │ │ ├── libeigen │ │ │ │ └── 0001-CMakeLists.txt-install-FindEigen3.cmake-script.patch │ │ │ └── libeigen_3.2.8.bb │ │ ├── libestr │ │ │ └── libestr_0.1.10.bb │ │ ├── libetpan │ │ │ ├── libetpan-0.57 │ │ │ │ ├── libetpan-autoreconf.patch │ │ │ │ ├── libetpan-ldflags.patch │ │ │ │ └── sepbuild.patch │ │ │ └── libetpan_0.57.bb │ │ ├── libftdi │ │ │ └── libftdi_1.3.bb │ │ ├── libgit2 │ │ │ └── libgit2_0.24.3.bb │ │ ├── libiio │ │ │ └── libiio_git.bb │ │ ├── libjs │ │ │ ├── libjs-jquery_1.7.2.bb │ │ │ └── libjs-sizzle_1.10.18.bb │ │ ├── liblinebreak │ │ │ └── liblinebreak_1.2.bb │ │ ├── libmcrypt │ │ │ └── libmcrypt_2.5.8.bb │ │ ├── libmicrohttpd │ │ │ └── libmicrohttpd_0.9.52.bb │ │ ├── libnih │ │ │ ├── libnih-1.0.3 │ │ │ │ └── libnih_1.0.3-4ubuntu16.patch │ │ │ └── libnih_1.0.3.bb │ │ ├── liboauth │ │ │ └── liboauth_1.0.3.bb │ │ ├── libol │ │ │ ├── libol │ │ │ │ └── configure.patch │ │ │ └── libol_0.3.18.bb │ │ ├── libp11 │ │ │ └── libp11_0.4.0.bb │ │ ├── libraw1394 │ │ │ └── libraw1394_2.1.0.bb │ │ ├── libsdl-ttf │ │ │ ├── files │ │ │ │ └── use.pkg-config.for.freetype2.patch │ │ │ ├── libsdl-ttf_2.0.11.bb │ │ │ └── libsdl2-ttf_2.0.14.bb │ │ ├── libsmi │ │ │ ├── libsmi │ │ │ │ ├── libsmi-fix-the-test-dump-files.patch │ │ │ │ └── smi.conf │ │ │ └── libsmi_0.5.0.bb │ │ ├── libsoc │ │ │ └── libsoc_0.8.2.bb │ │ ├── libsodium │ │ │ └── libsodium_1.0.11.bb │ │ ├── libssh │ │ │ └── libssh_0.7.3.bb │ │ ├── libssh2 │ │ │ └── libssh2_1.7.0.bb │ │ ├── libtinyxml │ │ │ ├── libtinyxml │ │ │ │ ├── enforce-use-stl.patch │ │ │ │ └── entity-encoding.patch │ │ │ └── libtinyxml_2.6.2.bb │ │ ├── libtinyxml2 │ │ │ └── libtinyxml2_4.0.1.bb │ │ ├── libusbg │ │ │ ├── libusbg │ │ │ │ └── 0001-Fix-out-of-tree-builds.patch │ │ │ └── libusbg_git.bb │ │ ├── libutempter │ │ │ ├── libutempter.bb │ │ │ └── libutempter │ │ │ │ └── 0001-Fix-macro-error.patch │ │ ├── links │ │ │ ├── files │ │ │ │ ├── ac-prog-cxx.patch │ │ │ │ └── links2.desktop │ │ │ ├── links-x11_2.7.bb │ │ │ ├── links.inc │ │ │ └── links_2.7.bb │ │ ├── lio-utils │ │ │ └── lio-utils_4.1.bb │ │ ├── lm_sensors │ │ │ ├── lmsensors-config │ │ │ │ ├── fancontrol │ │ │ │ ├── sensord │ │ │ │ ├── sensord.cgi │ │ │ │ ├── sensord.conf │ │ │ │ └── sensors.conf │ │ │ ├── lmsensors-config_1.0.bb │ │ │ ├── lmsensors │ │ │ │ ├── 0001-lmsensors-sensors-detect-print-a-special-message-whe.patch │ │ │ │ ├── fancontrol.init │ │ │ │ └── sensord.init │ │ │ └── lmsensors_3.4.0.bb │ │ ├── lockdev │ │ │ └── lockdev_git.bb │ │ ├── log4c │ │ │ ├── log4c │ │ │ │ └── fix_configure_with-expat.patch │ │ │ └── log4c_1.2.4.bb │ │ ├── log4cpp │ │ │ ├── files │ │ │ │ └── fix-pc.patch │ │ │ └── log4cpp_1.1.1.bb │ │ ├── lvm2 │ │ │ ├── lvm2.inc │ │ │ ├── lvm2 │ │ │ │ ├── 0001-implement-libc-specific-reopen_stream.patch │ │ │ │ ├── 0002-Guard-use-of-mallinfo-with-__GLIBC__.patch │ │ │ │ ├── 0003-include-fcntl.h-for-O_-defines-and-fcntl-signature.patch │ │ │ │ ├── 0004-tweak-MODPROBE_CMD-for-cross-compile.patch │ │ │ │ └── lvm.conf │ │ │ ├── lvm2_2.02.138.bb │ │ │ └── lvm2_2.02.166.bb │ │ ├── lzip │ │ │ └── lzip_1.16.bb │ │ ├── mailcap │ │ │ └── mailcap_2.1.46.bb │ │ ├── mbuffer │ │ │ └── mbuffer_20140310.bb │ │ ├── mcelog │ │ │ ├── mce-inject_git.bb │ │ │ ├── mcelog │ │ │ │ ├── 0001-Add-Kabylake-client-support.patch │ │ │ │ ├── mcelog-debash.patch │ │ │ │ └── run-ptest │ │ │ └── mcelog_1.40.bb │ │ ├── mg │ │ │ ├── files │ │ │ │ └── remove_ncurses_check.patch │ │ │ └── mg_20161005.bb │ │ ├── mime-support │ │ │ └── mime-support_3.48.bb │ │ ├── mini-iconv │ │ │ └── mini-iconv.bb │ │ ├── minini │ │ │ └── minini_1.2.b.bb │ │ ├── mongodb │ │ │ ├── mongodb │ │ │ │ └── 0001-Tell-scons-to-use-build-settings-from-environment-va.patch │ │ │ └── mongodb_git.bb │ │ ├── multipath-tools │ │ │ ├── files │ │ │ │ ├── 0001-multipathd.service-Error-fix.patch │ │ │ │ ├── always-use-libdevmapper-kpartx.patch │ │ │ │ ├── always-use-libdevmapper.patch │ │ │ │ ├── do-not-link-libmpathpersist-to-TMPDIR.patch │ │ │ │ ├── makefile_inc.patch │ │ │ │ └── multipathd.oe │ │ │ └── multipath-tools_git.bb │ │ ├── mysql │ │ │ ├── mariadb-native_5.5.52.bb │ │ │ ├── mariadb.inc │ │ │ ├── mariadb │ │ │ │ ├── change-cc-to-cc-version.patch │ │ │ │ ├── configure.cmake-fix-valgrind.patch │ │ │ │ ├── fix-a-building-failure.patch │ │ │ │ ├── fix-cmake-module-path.patch │ │ │ │ ├── fix-mysqlclient-r-version.patch │ │ │ │ ├── install_db │ │ │ │ ├── install_db.service │ │ │ │ ├── my.cnf │ │ │ │ ├── mysql-systemd-start │ │ │ │ ├── mysqld.service │ │ │ │ └── remove-bad-path.patch │ │ │ ├── mariadb_5.5.52.bb │ │ │ └── mysql-python_1.2.5.bb │ │ ├── nano │ │ │ ├── nano-2.2.5 │ │ │ │ └── ncursesw.includedir.patch │ │ │ ├── nano.inc │ │ │ └── nano_2.2.5.bb │ │ ├── ne10 │ │ │ ├── ne10 │ │ │ │ └── 0001-CMakeLists.txt-Remove-mthumb-interwork.patch │ │ │ └── ne10_1.2.1.bb │ │ ├── nmon │ │ │ └── nmon_13g.bb │ │ ├── numactl │ │ │ ├── numactl │ │ │ │ ├── 0001-define-run-test-target.patch │ │ │ │ ├── Fix-the-test-output-format.patch │ │ │ │ ├── Makefile │ │ │ │ ├── fix-null-pointer.patch │ │ │ │ └── run-ptest │ │ │ └── numactl_2.0.11.bb │ │ ├── ode │ │ │ ├── ode │ │ │ │ ├── configure.patch │ │ │ │ └── install.patch │ │ │ └── ode_0.13.bb │ │ ├── onig │ │ │ ├── files │ │ │ │ ├── configure.patch │ │ │ │ └── do-not-use-system-headers.patch │ │ │ └── onig_5.9.6.bb │ │ ├── open-vcdiff │ │ │ └── open-vcdiff_0.8.4.bb │ │ ├── openct │ │ │ ├── openct │ │ │ │ ├── etc-openct.udev.in-disablePROGRAM.patch │ │ │ │ ├── etc-openct_usb.in-modify-UDEVINFO.patch │ │ │ │ ├── openct.init │ │ │ │ ├── openct.service │ │ │ │ └── openct.sysconfig │ │ │ └── openct_0.6.20.bb │ │ ├── opencv │ │ │ ├── opencv-samples_2.4.bb │ │ │ ├── opencv │ │ │ │ ├── 0001-3rdparty-ippicv-Use-pre-downloaded-ipp.patch │ │ │ │ ├── 0001-Use-__vector-instead-of-vector-as-suggests-Eigen.patch │ │ │ │ ├── fixgcc60.patch │ │ │ │ └── fixpkgconfig.patch │ │ │ ├── opencv_2.4.bb │ │ │ └── opencv_3.1.bb │ │ ├── openldap │ │ │ ├── openldap │ │ │ │ ├── initscript │ │ │ │ ├── install-strip.patch │ │ │ │ ├── kill-icu.patch │ │ │ │ ├── openldap-2.4.28-gnutls-gcrypt.patch │ │ │ │ ├── openldap-CVE-2015-3276.patch │ │ │ │ ├── openldap-m4-pthread.patch │ │ │ │ ├── slapd.service │ │ │ │ ├── thread_stub.patch │ │ │ │ └── use-urandom.patch │ │ │ └── openldap_2.4.44.bb │ │ ├── openmotif │ │ │ ├── openmotif │ │ │ │ └── configure.patch │ │ │ └── openmotif_2.3.3.bb │ │ ├── opensc │ │ │ └── opensc_0.16.0.bb │ │ ├── opensync │ │ │ ├── libsyncml_0.5.4.bb │ │ │ └── wbxml2_0.10.8.bb │ │ ├── openwbem │ │ │ ├── openwbem │ │ │ │ ├── checkserverkey │ │ │ │ ├── loadmof.sh │ │ │ │ ├── novell-openwbem-root-acl.mof │ │ │ │ ├── openwbem-etc_pam.d_openwbem │ │ │ │ ├── openwbem-owcimomd.init │ │ │ │ ├── openwbem-rpmlintrc │ │ │ │ ├── owcimomd.service │ │ │ │ └── rmmof.sh │ │ │ └── openwbem_3.2.3.bb │ │ ├── p910nd │ │ │ ├── p910nd │ │ │ │ └── fix-var-lock.patch │ │ │ └── p910nd_0.95.bb │ │ ├── pam-passwdqc │ │ │ ├── files │ │ │ │ ├── 1000patch-219201.patch │ │ │ │ └── 7000Makefile-fix-CC.patch │ │ │ └── pam-passwdqc_1.0.5.bb │ │ ├── pcsc-lite │ │ │ └── pcsc-lite_1.8.13.bb │ │ ├── picocom │ │ │ └── picocom_1.7.bb │ │ ├── pidgin │ │ │ ├── libotr │ │ │ │ ├── fix_qa-issue_include.patch │ │ │ │ └── sepbuild.patch │ │ │ ├── libotr_4.0.0.bb │ │ │ ├── pidgin-otr │ │ │ │ └── ignore_extra-portability_warnings.patch │ │ │ ├── pidgin-otr_4.0.0.bb │ │ │ ├── pidgin │ │ │ │ ├── pidgin-cross-python-265.patch │ │ │ │ ├── purple-OE-branding-25.patch │ │ │ │ └── sanitize-configure.ac.patch │ │ │ └── pidgin_2.11.0.bb │ │ ├── pkcs11-helper │ │ │ └── pkcs11-helper_1.11.bb │ │ ├── pngcheck │ │ │ └── pngcheck_2.3.0.bb │ │ ├── poco │ │ │ ├── poco │ │ │ │ └── run-ptest │ │ │ └── poco_1.7.5.bb │ │ ├── poppler │ │ │ ├── poppler-data_0.4.7.bb │ │ │ ├── poppler │ │ │ │ ├── 0001-add-manadatory-options-to-find-qt4-qt5-moc.patch │ │ │ │ └── 0002-fix-gcc-6-math-ambiguous-errors.patch │ │ │ └── poppler_0.48.0.bb │ │ ├── portaudio │ │ │ ├── files │ │ │ │ └── ldflags.patch │ │ │ └── portaudio-v19_20161030.bb │ │ ├── postgresql │ │ │ ├── files │ │ │ │ ├── 0001-Use-pkg-config-for-libxml2-detection.patch │ │ │ │ ├── not-check-libperl.patch │ │ │ │ ├── postgresql-bashprofile │ │ │ │ ├── postgresql-setup │ │ │ │ ├── postgresql.init │ │ │ │ ├── postgresql.pam │ │ │ │ ├── postgresql.service │ │ │ │ └── remove.autoconf.version.check.patch │ │ │ ├── postgresql.inc │ │ │ └── postgresql_9.4.8.bb │ │ ├── pps-tools │ │ │ └── pps-tools_git.bb │ │ ├── procmail │ │ │ ├── procmail │ │ │ │ ├── from-debian-to-fix-compile-errors.patch │ │ │ │ ├── from-debian-to-fix-man-file.patch │ │ │ │ ├── from-debian-to-modify-parameters.patch │ │ │ │ └── man-file-mailstat.1-from-debian.patch │ │ │ └── procmail_3.22.bb │ │ ├── psqlodbc │ │ │ ├── files │ │ │ │ ├── psqlodbc-donot-use-the-hardcode-libdir.patch │ │ │ │ ├── psqlodbc-fix-for-ptest-support.patch │ │ │ │ ├── psqlodbc-remove-some-checks-for-cross-compiling.patch │ │ │ │ └── run-ptest │ │ │ ├── psqlodbc.inc │ │ │ └── psqlodbc_09.05.0300.bb │ │ ├── pv │ │ │ └── pv_1.5.3.bb │ │ ├── pxaregs │ │ │ ├── pxaregs-1.14 │ │ │ │ ├── Makefile │ │ │ │ ├── i2c.patch │ │ │ │ ├── munmap.patch │ │ │ │ ├── pxaregs.c │ │ │ │ ├── serial.patch │ │ │ │ └── usb.patch │ │ │ └── pxaregs_1.14.bb │ │ ├── rdfind │ │ │ ├── files │ │ │ │ └── reproducible_build.patch │ │ │ └── rdfind_1.3.4.bb │ │ ├── re2c │ │ │ ├── re2c │ │ │ │ └── configure.patch │ │ │ └── re2c_0.13.5.bb │ │ ├── read-edid │ │ │ ├── read-edid │ │ │ │ └── 0001-configure-remove-check-for-x86.h-we-don-t-build-get-.patch │ │ │ └── read-edid_2.0.0.bb │ │ ├── rsnapshot │ │ │ ├── rsnapshot │ │ │ │ └── configure-fix-cmd_rsync.patch │ │ │ └── rsnapshot_git.bb │ │ ├── samsung-soc-utils │ │ │ ├── s3c24xx-gpio_svn.bb │ │ │ ├── s3c64xx-gpio_svn.bb │ │ │ └── sjf2410-linux-native_svn.bb │ │ ├── sdparm │ │ │ ├── files │ │ │ │ └── make-sysroot-work.patch │ │ │ └── sdparm_1.10.bb │ │ ├── serial-utils │ │ │ ├── pty-forward-native.bb │ │ │ └── serial-forward_git.bb │ │ ├── sg3-utils │ │ │ └── sg3-utils_1.42.bb │ │ ├── sharutils │ │ │ ├── sharutils-4.14 │ │ │ │ └── fix-for-cross-compiling.patch │ │ │ └── sharutils_4.14.bb │ │ ├── smem │ │ │ └── smem_1.4.bb │ │ ├── soci │ │ │ ├── soci │ │ │ │ └── soci_libdir.patch │ │ │ └── soci_3.2.2.bb │ │ ├── spitools │ │ │ └── spitools_git.bb │ │ ├── sqlite │ │ │ ├── sqlite-2.8.17 │ │ │ │ ├── mainmk_build_dynamic.patch │ │ │ │ ├── mainmk_no_tcl.patch │ │ │ │ └── sqlite.pc │ │ │ └── sqlite_2.8.17.bb │ │ ├── start-stop-daemon │ │ │ ├── start-stop-daemon │ │ │ │ └── 0001-dpkg-start-stop-daemon-Accept-SIG-prefixed-signal-na.patch │ │ │ └── start-stop-daemon_1.17.25.bb │ │ ├── synergy │ │ │ └── synergy_git.bb │ │ ├── syslog-ng │ │ │ ├── files │ │ │ │ ├── Fix-the-memory-leak-problem-for-mutex.patch │ │ │ │ ├── Fix-the-memory-leak-problem-when-HAVE_ENVIRON-defined.patch │ │ │ │ ├── configure.ac-add-option-enable-thread-tls-to-manage-.patch │ │ │ │ ├── configure.patch │ │ │ │ ├── dbifix.patch │ │ │ │ ├── fix-a-memory-leak-in-log_driver_free.patch │ │ │ │ ├── fix-config-libnet.patch │ │ │ │ ├── fix-invalid-ownership.patch │ │ │ │ ├── initscript │ │ │ │ ├── syslog-ng.conf │ │ │ │ ├── syslog-ng.service-the-syslog-ng-service.patch │ │ │ │ └── volatiles.03_syslog-ng │ │ │ ├── syslog-ng.inc │ │ │ └── syslog-ng_3.6.4.bb │ │ ├── system-config-keyboard │ │ │ └── system-config-keyboard_1.4.0.bb │ │ ├── system-setup-keyboard │ │ │ └── system-setup-keyboard_0.8.8.bb │ │ ├── tbb │ │ │ ├── tbb │ │ │ │ ├── allow-to-build-for-older-arm-cores.patch │ │ │ │ ├── cross-compile.patch │ │ │ │ └── tbb.pc │ │ │ └── tbb_4.1.bb │ │ ├── thin-provisioning-tools │ │ │ ├── files │ │ │ │ └── 0001-do-not-strip-pdata_tools-at-do_install.patch │ │ │ └── thin-provisioning-tools_0.6.3.bb │ │ ├── tokyocabinet │ │ │ ├── tokyocabinet │ │ │ │ └── remove-hard-coded-include-and-lib-paths.patch │ │ │ └── tokyocabinet_1.4.48.bb │ │ ├── tomoyo-tools │ │ │ └── tomoyo-tools_2.5.0.bb │ │ ├── toscoterm │ │ │ └── toscoterm_git.bb │ │ ├── tree │ │ │ └── tree_1.7.0.bb │ │ ├── udisks │ │ │ ├── udisks │ │ │ │ ├── 0001-fix-build-with-newer-glibc-versions.patch │ │ │ │ ├── optional-depends.patch │ │ │ │ └── udisks-1.0.5-fix-service-file.patch │ │ │ ├── udisks2 │ │ │ │ └── non-gnu-libc.patch │ │ │ ├── udisks2_2.1.7.bb │ │ │ └── udisks_1.0.5.bb │ │ ├── uim │ │ │ ├── uim │ │ │ │ ├── 0001-fix-bug-for-cross-compile.patch │ │ │ │ └── uim-module-manager.patch │ │ │ └── uim_1.8.6.bb │ │ ├── unixodbc │ │ │ ├── files │ │ │ │ └── do-not-use-libltdl-source-directory.patch │ │ │ └── unixodbc_2.3.4.bb │ │ ├── upower │ │ │ └── upower_0.99.4.bb │ │ ├── usb-modeswitch │ │ │ ├── usb-modeswitch-data_20140529.bb │ │ │ └── usb-modeswitch_2.2.0.bb │ │ ├── usbpath │ │ │ ├── usbpath │ │ │ │ └── configure.patch │ │ │ └── usbpath_svn.bb │ │ ├── uthash │ │ │ └── uthash_1.9.7.bb │ │ ├── utouch │ │ │ ├── files │ │ │ │ └── remove-man-page-creation.patch │ │ │ ├── utouch-evemu_git.bb │ │ │ ├── utouch-frame_git.bb │ │ │ └── utouch-mtview_git.bb │ │ ├── vala-terminal │ │ │ └── vala-terminal_git.bb │ │ ├── vboxguestdrivers │ │ │ ├── vboxguestdrivers │ │ │ │ └── Makefile.utils │ │ │ ├── vboxguestdrivers_4.3.36.bb │ │ │ └── vboxguestdrivers_5.1.6.bb │ │ ├── vim │ │ │ ├── files │ │ │ │ ├── disable_acl_header_check.patch │ │ │ │ └── vim-add-knob-whether-elf.h-are-checked.patch │ │ │ ├── vim-tiny_8.0.0022.bb │ │ │ └── vim_8.0.0022.bb │ │ ├── wmiconfig │ │ │ └── wmiconfig_svn.bb │ │ ├── xchat │ │ │ ├── xchat-2.8.8 │ │ │ │ ├── automake-foreign.patch │ │ │ │ ├── fix-includes-for-separate-build.patch │ │ │ │ └── glib-2.32.patch │ │ │ └── xchat_2.8.8.bb │ │ ├── xdelta │ │ │ └── xdelta3_3.0.11.bb │ │ ├── xdg-user-dirs │ │ │ ├── files │ │ │ │ └── xdg-user-dirs.desktop │ │ │ └── xdg-user-dirs_0.15.bb │ │ ├── xmlstarlet │ │ │ ├── files │ │ │ │ ├── 0001-usage2c.awk-fix-wrong-basename-regexp.patch │ │ │ │ └── configure.ac.patch │ │ │ └── xmlstarlet_1.5.0.bb │ │ └── zile │ │ │ ├── files │ │ │ └── remove-help2man.patch │ │ │ └── zile_2.4.11.bb │ ├── recipes-test │ │ ├── fwts │ │ │ ├── fwts │ │ │ │ └── 0001-ignore-constant-logical-operand-warning-with-clang.patch │ │ │ └── fwts_git.bb │ │ ├── gmock │ │ │ ├── gmock │ │ │ │ ├── cmake-Add-install-command-for-libraries-and-headers.patch │ │ │ │ └── cmake-gmock.pc.in-Add-pkg-config-support.patch │ │ │ └── gmock_1.7.0.bb │ │ └── gtest │ │ │ ├── gtest │ │ │ ├── 0001-Add-install-command-for-libraries-and-headers.patch │ │ │ └── 0002-CMakeLists-gtest.pc.in-Add-pkg-config-support-to-gte.patch │ │ │ └── gtest_1.7.0.bb │ └── site │ │ ├── endian-big │ │ └── endian-little ├── meta-perl │ ├── COPYING.MIT │ ├── README │ ├── conf │ │ └── layer.conf │ ├── recipes-extended │ │ └── mime-construct │ │ │ ├── files │ │ │ └── fix-mime-construct-help-return-value.patch │ │ │ └── mime-construct_1.11.bb │ └── recipes-perl │ │ ├── adduser │ │ ├── adduser_3.115.bb │ │ └── files │ │ │ └── adduser-add-M-option-for-useradd.patch │ │ ├── libalgorithm │ │ └── libalgorithm-diff-perl_1.15.bb │ │ ├── libauthen │ │ ├── files │ │ │ └── run-ptest │ │ └── libauthen-sasl-perl_2.16.bb │ │ ├── libcapture │ │ └── libcapture-tiny-perl_0.36.bb │ │ ├── libcgi │ │ └── libcgi-perl_4.28.bb │ │ ├── libclass │ │ └── libclass-method-modifiers-perl_2.12.bb │ │ ├── libcrypt │ │ ├── libcrypt-openssl-random-perl_0.11.bb │ │ └── libcrypt-openssl-rsa-perl_0.28.bb │ │ ├── libcurses │ │ └── libcurses-perl_1.34.bb │ │ ├── libdb │ │ ├── libdbd-sqlite-perl │ │ │ └── sqlite-perl-test.pl │ │ └── libdbd-sqlite-perl_1.50.bb │ │ ├── libdevel │ │ └── libdevel-globaldestruction-perl_0.13.bb │ │ ├── libdigest │ │ ├── files │ │ │ └── run-ptest │ │ ├── libdigest-hmac-perl_1.03.bb │ │ └── libdigest-sha1-perl_2.13.bb │ │ ├── libencode │ │ ├── libencode-locale-perl_1.05.bb │ │ └── libencode-perl_2.83.bb │ │ ├── libextutils │ │ ├── libextutils-config-perl_0.008.bb │ │ ├── libextutils-cppguess-perl_0.09.bb │ │ ├── libextutils-helpers-perl_0.022.bb │ │ ├── libextutils-installpaths-perl_0.011.bb │ │ └── libextutils-parsexs-perl_3.24.bb │ │ ├── libhtml │ │ ├── files │ │ │ └── bin-htmltree-fix-shebang.patch │ │ ├── libhtml-parser-perl_3.72.bb │ │ └── libhtml-tree-perl_5.03.bb │ │ ├── libimport │ │ └── libimport-into-perl_1.002004.bb │ │ ├── libio │ │ ├── files │ │ │ └── run-ptest │ │ ├── libio-socket-ssl-perl_1.997.bb │ │ └── libio-stringy-perl_2.111.bb │ │ ├── libipc │ │ └── libipc-signal-perl_1.00.bb │ │ ├── libmime │ │ ├── files │ │ │ └── run-ptest │ │ └── libmime-types-perl_2.04.bb │ │ ├── libmodule │ │ ├── libmodule-build-perl_0.31.bb │ │ ├── libmodule-build-tiny-perl_0.036.bb │ │ ├── libmodule-pluggable-perl_5.2.bb │ │ └── libmodule-runtime-perl_0.015.bb │ │ ├── libmoo │ │ └── libmoo-perl_2.000002.bb │ │ ├── libnet │ │ ├── files │ │ │ ├── 0001-libnet-ssleay-perl-Disable-test-that-fails-with-open.patch │ │ │ ├── 0002-Recent-1.0.2-betas-have-dropped-the-SSLv3_method-fun.patch │ │ │ └── run-ptest │ │ ├── libnet-dns-perl_1.06.bb │ │ ├── libnet-libidn-perl-0.12 │ │ │ └── libidn-wr-cross-compile.patch │ │ ├── libnet-libidn-perl_0.12.bb │ │ └── libnet-ssleay-perl_1.65.bb │ │ ├── libproc │ │ └── libproc-waitstat-perl_1.00.bb │ │ ├── librole │ │ └── librole-tiny-perl_2.000001.bb │ │ ├── libstrictures │ │ └── libstrictures-perl_2.000002.bb │ │ ├── libsub │ │ └── libsub-exporter-progressive-perl_0.001011.bb │ │ ├── libtest │ │ └── libtest-harness-perl_3.36.bb │ │ ├── libtext │ │ ├── libtext-diff-perl_1.41.bb │ │ └── libtext-iconv-perl_1.7.bb │ │ └── libxml │ │ ├── libxml-filter-buffertext-perl_1.01.bb │ │ ├── libxml-libxml-perl │ │ ├── disable-libxml2-check.patch │ │ ├── fix-CATALOG-conditional-compile.patch │ │ └── using-DOCB-conditional.patch │ │ ├── libxml-libxml-perl_2.0121.bb │ │ └── libxml-sax-writer-perl_0.56.bb ├── meta-python │ ├── COPYING.MIT │ ├── README │ ├── classes │ │ └── pypi.bbclass │ ├── conf │ │ └── layer.conf │ ├── licenses │ │ ├── LLNL │ │ └── Unicode │ ├── recipes-connectivity │ │ ├── gateone │ │ │ ├── gateone │ │ │ │ ├── 80oe.conf.in │ │ │ │ ├── gateone-avahi.service │ │ │ │ ├── gateone-init.in │ │ │ │ └── gateone.service.in │ │ │ └── gateone_git.bb │ │ ├── python-pyro4 │ │ │ └── python-pyro4_4.39.bb │ │ ├── python-thrift │ │ │ └── python-thrift_0.9.3.bb │ │ └── python-txws │ │ │ └── python-txws_0.9.1.bb │ ├── recipes-devtools │ │ └── python │ │ │ ├── pyrtm_0.4.2.bb │ │ │ ├── python-autobahn_0.8.6.bb │ │ │ ├── python-backports-abc_0.4.bb │ │ │ ├── python-backports-ssl_3.5.0.1.bb │ │ │ ├── python-bcrypt_3.1.1.bb │ │ │ ├── python-behave_1.2.5.bb │ │ │ ├── python-bitarray_0.8.1.bb │ │ │ ├── python-blinker_1.4.bb │ │ │ ├── python-cassandra-driver.inc │ │ │ ├── python-certifi.inc │ │ │ ├── python-certifi_2016.9.26.bb │ │ │ ├── python-cffi.inc │ │ │ ├── python-cffi_1.8.3.bb │ │ │ ├── python-chardet_2.3.0.bb │ │ │ ├── python-cheetah_2.4.4.bb │ │ │ ├── python-click.inc │ │ │ ├── python-click_6.6.bb │ │ │ ├── python-cloudeebus_0.6.0.bb │ │ │ ├── python-cmd2_0.6.9.bb │ │ │ ├── python-cryptography-vectors.inc │ │ │ ├── python-cryptography-vectors_1.4.bb │ │ │ ├── python-cryptography.inc │ │ │ ├── python-cryptography │ │ │ └── run-ptest │ │ │ ├── python-cryptography_1.4.bb │ │ │ ├── python-cython.inc │ │ │ ├── python-cython_0.24.1.bb │ │ │ ├── python-daemonize_2.4.7.bb │ │ │ ├── python-dateutil.inc │ │ │ ├── python-dateutil_2.5.3.bb │ │ │ ├── python-dbus_1.2.4.bb │ │ │ ├── python-dbusmock │ │ │ ├── 0001-Add-functionality-to-add-own-objects-to-internal-obj.patch │ │ │ └── 0002-Add-possibility-to-import-templates-from-packages.patch │ │ │ ├── python-dbusmock_0.16.7.bb │ │ │ ├── python-decorator.inc │ │ │ ├── python-decorator_4.0.10.bb │ │ │ ├── python-django-south_1.0.2.bb │ │ │ ├── python-django_1.9.7.bb │ │ │ ├── python-dominate_2.2.1.bb │ │ │ ├── python-enum34_1.1.6.bb │ │ │ ├── python-epydoc_3.0.1.bb │ │ │ ├── python-evdev_0.6.4.bb │ │ │ ├── python-feedformatter.inc │ │ │ ├── python-feedformatter_0.4.bb │ │ │ ├── python-feedparser_5.2.1.bb │ │ │ ├── python-flask-bcrypt_0.7.1.bb │ │ │ ├── python-flask-bootstrap_3.3.6.0.bb │ │ │ ├── python-flask-login.inc │ │ │ ├── python-flask-login_0.3.2.bb │ │ │ ├── python-flask-navigation_0.2.0.bb │ │ │ ├── python-flask-pymongo.inc │ │ │ ├── python-flask-pymongo_0.4.1.bb │ │ │ ├── python-flask-sqlalchemy_2.1.bb │ │ │ ├── python-flask-wtf │ │ │ └── import-simplejson-as-json.patch │ │ │ ├── python-flask-wtf_0.12.bb │ │ │ ├── python-flask.inc │ │ │ ├── python-flask_0.11.1.bb │ │ │ ├── python-functools32_3.2.3-2.bb │ │ │ ├── python-gdata_1.2.4.bb │ │ │ ├── python-gevent_0.13.8.bb │ │ │ ├── python-greenlet │ │ │ └── 0001-Use-x-instead-of-r-for-aarch64-register-names.patch │ │ │ ├── python-greenlet_0.4.9.bb │ │ │ ├── python-html5lib_0.999999999.bb │ │ │ ├── python-humanize.inc │ │ │ ├── python-humanize_0.5.1.bb │ │ │ ├── python-idna.inc │ │ │ ├── python-idna_2.1.bb │ │ │ ├── python-imaging │ │ │ ├── 0001-python-imaging-setup.py-force-paths-for-zlib-freetyp.patch │ │ │ ├── allow.to.disable.some.features.patch │ │ │ ├── fix-freetype-includes.patch │ │ │ ├── python-imaging-CVE-2016-2533.patch │ │ │ └── remove-host-libdir.patch │ │ │ ├── python-imaging_1.1.7.bb │ │ │ ├── python-ipaddress_1.0.17.bb │ │ │ ├── python-iso8601.inc │ │ │ ├── python-iso8601_0.1.11.bb │ │ │ ├── python-itsdangerous.inc │ │ │ ├── python-itsdangerous_0.24.bb │ │ │ ├── python-jinja2.inc │ │ │ ├── python-jinja2_2.8.bb │ │ │ ├── python-jsonpatch_1.14.bb │ │ │ ├── python-jsonpointer_1.10.bb │ │ │ ├── python-jsonschema.inc │ │ │ ├── python-jsonschema_2.5.1.bb │ │ │ ├── python-ldap │ │ │ └── setup.cfg.patch │ │ │ ├── python-ldap_2.3.9.bb │ │ │ ├── python-ldap_2.4.10.bb │ │ │ ├── python-lxml.inc │ │ │ ├── python-lxml_3.6.4.bb │ │ │ ├── python-m2crypto │ │ │ ├── 0001-M2Crypto-Error-fix.patch │ │ │ └── 0001-setup.py-link-in-sysroot-not-in-host-directories.patch │ │ │ ├── python-m2crypto_0.23.0.bb │ │ │ ├── python-markupsafe.inc │ │ │ ├── python-markupsafe_0.23.bb │ │ │ ├── python-matplotlib │ │ │ ├── fix_setup.patch │ │ │ └── fix_setupext.patch │ │ │ ├── python-matplotlib_1.1.0.bb │ │ │ ├── python-mccabe │ │ │ └── 0001-python-mccabe-remove-unnecessary-setup_requires-pyte.patch │ │ │ ├── python-mccabe_0.4.0.bb │ │ │ ├── python-mock_2.0.0.bb │ │ │ ├── python-monotonic_1.2.bb │ │ │ ├── python-msgpack_0.4.8.bb │ │ │ ├── python-ndg-httpsclient.inc │ │ │ ├── python-ndg-httpsclient_0.4.2.bb │ │ │ ├── python-netaddr_0.7.18.bb │ │ │ ├── python-numeric │ │ │ └── no-lapack.patch │ │ │ ├── python-numeric_24.2.bb │ │ │ ├── python-paho-mqtt_1.1.bb │ │ │ ├── python-pam_1.8.2.bb │ │ │ ├── python-parse-type_0.3.4.bb │ │ │ ├── python-parse_1.6.6.bb │ │ │ ├── python-passlib.inc │ │ │ ├── python-passlib_1.6.5.bb │ │ │ ├── python-paste_2.0.3.bb │ │ │ ├── python-pbr_1.10.0.bb │ │ │ ├── python-pep8_1.7.0.bb │ │ │ ├── python-pip_8.1.2.bb │ │ │ ├── python-pretend.inc │ │ │ ├── python-pretend_1.0.8.bb │ │ │ ├── python-prettytable_0.7.2.bb │ │ │ ├── python-progress.inc │ │ │ ├── python-progress_1.2.bb │ │ │ ├── python-prompt-toolkit.inc │ │ │ ├── python-prompt-toolkit_1.0.7.bb │ │ │ ├── python-psutil.inc │ │ │ ├── python-psutil_4.2.0.bb │ │ │ ├── python-py.inc │ │ │ ├── python-py_1.4.31.bb │ │ │ ├── python-pyalsaaudio_0.4.bb │ │ │ ├── python-pyasn1.inc │ │ │ ├── python-pyasn1_0.1.9.bb │ │ │ ├── python-pybind11.inc │ │ │ ├── python-pybind11_1.8.1.bb │ │ │ ├── python-pycparser.inc │ │ │ ├── python-pycparser_2.17.bb │ │ │ ├── python-pyflakes_1.2.3.bb │ │ │ ├── python-pygpgme │ │ │ ├── 0001-reflect-2.1-reporting-for-key-imports.patch │ │ │ ├── 0002-passphrase_cb-is-deprecated.patch │ │ │ ├── 0003-handle-generic-error-when-no-passphrase-callback-pre.patch │ │ │ └── run-ptest │ │ │ ├── python-pygpgme_0.3.bb │ │ │ ├── python-pyhamcrest_1.9.0.bb │ │ │ ├── python-pyinotify.inc │ │ │ ├── python-pyinotify_0.9.6.bb │ │ │ ├── python-pylint_1.6.4.bb │ │ │ ├── python-pymisp.inc │ │ │ ├── python-pymisp_2.4.51.1.bb │ │ │ ├── python-pymongo.inc │ │ │ ├── python-pymongo_3.3.0.bb │ │ │ ├── python-pyopenssl.inc │ │ │ ├── python-pyopenssl_16.1.0.bb │ │ │ ├── python-pyparsing_2.1.4.bb │ │ │ ├── python-pyrex-native_0.9.9.bb │ │ │ ├── python-pyrex │ │ │ └── pyrex-fix-optimized-mode.patch │ │ │ ├── python-pyrex_0.9.9.bb │ │ │ ├── python-pyroute2 │ │ │ └── import-simplejson-as-json.patch │ │ │ ├── python-pyroute2_0.3.22.bb │ │ │ ├── python-pyserial.inc │ │ │ ├── python-pyserial_3.2.1.bb │ │ │ ├── python-pysocks.inc │ │ │ ├── python-pysocks_1.5.7.bb │ │ │ ├── python-pytest-runner_2.8.bb │ │ │ ├── python-pytest.inc │ │ │ ├── python-pytest_3.0.1.bb │ │ │ ├── python-pytz_2016.7.bb │ │ │ ├── python-pyudev_0.20.0.bb │ │ │ ├── python-pyusb_1.0.0b2.bb │ │ │ ├── python-pyyaml │ │ │ └── setup.py │ │ │ ├── python-pyyaml_3.12.bb │ │ │ ├── python-pyzmq │ │ │ └── club-rpath-out.patch │ │ │ ├── python-pyzmq_14.7.0.bb │ │ │ ├── python-redis.inc │ │ │ ├── python-redis_2.10.5.bb │ │ │ ├── python-requests.inc │ │ │ ├── python-requests_2.12.0.bb │ │ │ ├── python-rfc3987.inc │ │ │ ├── python-rfc3987_1.3.7.bb │ │ │ ├── python-setuptools-scm_1.15.0.bb │ │ │ ├── python-singledispatch_3.4.0.3.bb │ │ │ ├── python-six.inc │ │ │ ├── python-six_1.10.0.bb │ │ │ ├── python-slip-dbus_0.6.0.bb │ │ │ ├── python-smbus_3.1.1.bb │ │ │ ├── python-snakefood_1.4.bb │ │ │ ├── python-sparts_0.7.3.bb │ │ │ ├── python-spidev.inc │ │ │ ├── python-sqlalchemy_0.7.9.bb │ │ │ ├── python-strict-rfc3339.inc │ │ │ ├── python-strict-rfc3339_0.7.bb │ │ │ ├── python-tornado-redis_2.4.18.bb │ │ │ ├── python-tornado.inc │ │ │ ├── python-tornado_4.3.bb │ │ │ ├── python-twisted_13.2.0.bb │ │ │ ├── python-ujson_1.35.bb │ │ │ ├── python-unidiff_0.5.2.bb │ │ │ ├── python-urllib3.inc │ │ │ ├── python-urllib3_1.19.bb │ │ │ ├── python-vcversioner_2.16.0.0.bb │ │ │ ├── python-visitor_0.1.3.bb │ │ │ ├── python-vobject_0.9.3.bb │ │ │ ├── python-wcwidth.inc │ │ │ ├── python-wcwidth_0.1.7.bb │ │ │ ├── python-webcolors.inc │ │ │ ├── python-webcolors_1.5.bb │ │ │ ├── python-webdav_0.1.2.bb │ │ │ ├── python-webencodings_0.5.bb │ │ │ ├── python-werkzeug.inc │ │ │ ├── python-werkzeug_0.11.11.bb │ │ │ ├── python-whoosh.inc │ │ │ ├── python-whoosh_2.7.4.bb │ │ │ ├── python-wtforms_2.1.bb │ │ │ ├── python-xlrd.inc │ │ │ ├── python-xlrd_1.0.0.bb │ │ │ ├── python-yappi_0.98.bb │ │ │ ├── python-zopeinterface_4.3.2.bb │ │ │ ├── python3-cassandra-driver_3.7.1.bb │ │ │ ├── python3-certifi_2016.9.26.bb │ │ │ ├── python3-cffi_1.8.3.bb │ │ │ ├── python3-click_6.6.bb │ │ │ ├── python3-cryptography-vectors_1.4.bb │ │ │ ├── python3-cryptography │ │ │ └── run-ptest │ │ │ ├── python3-cryptography_1.4.bb │ │ │ ├── python3-cython_0.24.1.bb │ │ │ ├── python3-dateutil_2.5.3.bb │ │ │ ├── python3-decorator_4.0.10.bb │ │ │ ├── python3-feedformatter_0.4.bb │ │ │ ├── python3-flask-login_0.3.2.bb │ │ │ ├── python3-flask-pymongo_0.4.1.bb │ │ │ ├── python3-flask_0.11.1.bb │ │ │ ├── python3-humanize_0.5.1.bb │ │ │ ├── python3-idna_2.1.bb │ │ │ ├── python3-iso8601_0.1.11.bb │ │ │ ├── python3-itsdangerous_0.24.bb │ │ │ ├── python3-jinja2_2.8.bb │ │ │ ├── python3-jsonschema_2.5.1.bb │ │ │ ├── python3-lxml_3.6.4.bb │ │ │ ├── python3-markupsafe_0.23.bb │ │ │ ├── python3-ndg-httpsclient_0.4.2.bb │ │ │ ├── python3-passlib_1.6.5.bb │ │ │ ├── python3-pretend_1.0.8.bb │ │ │ ├── python3-progress_1.2.bb │ │ │ ├── python3-prompt-toolkit_1.0.7.bb │ │ │ ├── python3-psutil_4.2.0.bb │ │ │ ├── python3-py_1.4.31.bb │ │ │ ├── python3-pyasn1_0.1.9.bb │ │ │ ├── python3-pybind11_1.8.1.bb │ │ │ ├── python3-pycparser_2.17.bb │ │ │ ├── python3-pyinotify_0.9.6.bb │ │ │ ├── python3-pymisp_2.4.51.1.bb │ │ │ ├── python3-pymongo_3.3.0.bb │ │ │ ├── python3-pyopenssl_16.1.0.bb │ │ │ ├── python3-pyserial_3.2.1.bb │ │ │ ├── python3-pysocks_1.5.7.bb │ │ │ ├── python3-pytest_3.0.1.bb │ │ │ ├── python3-redis_2.10.5.bb │ │ │ ├── python3-requests_2.12.0.bb │ │ │ ├── python3-rfc3987_1.3.7.bb │ │ │ ├── python3-six_1.10.0.bb │ │ │ ├── python3-spidev_3.2.bb │ │ │ ├── python3-strict-rfc3339_0.7.bb │ │ │ ├── python3-tornado_4.3.bb │ │ │ ├── python3-urllib3_1.19.bb │ │ │ ├── python3-vcversioner_2.16.0.0.bb │ │ │ ├── python3-wcwidth_0.1.7.bb │ │ │ ├── python3-webcolors_1.5.bb │ │ │ ├── python3-werkzeug_0.11.11.bb │ │ │ ├── python3-whoosh_2.7.4.bb │ │ │ └── python3-xlrd_1.0.0.bb │ └── recipes-extended │ │ ├── python-pyephem │ │ └── python-pyephem_3.7.6.0.bb │ │ └── python-pyparted │ │ ├── python-pyparted │ │ └── 0001-fix-version-float-check.patch │ │ └── python-pyparted_3.10.7.bb ├── meta-ruby │ ├── COPYING.MIT │ ├── README │ ├── classes │ │ └── ruby.bbclass │ ├── conf │ │ └── layer.conf │ └── recipes-devtools │ │ └── ruby │ │ └── bundler_git.bb ├── meta-systemd │ ├── README │ ├── conf │ │ └── layer.conf │ ├── oe-core │ │ ├── recipes-bsp │ │ │ └── keymaps │ │ │ │ └── keymaps_1.0.bbappend │ │ ├── recipes-connectivity │ │ │ ├── avahi │ │ │ │ └── avahi_%.bbappend │ │ │ ├── connman │ │ │ │ └── connman_%.bbappend │ │ │ ├── dhcp │ │ │ │ ├── dhcp │ │ │ │ │ └── dhclient.service │ │ │ │ └── dhcp_%.bbappend │ │ │ ├── ofono │ │ │ │ └── ofono_%.bbappend │ │ │ ├── openssh │ │ │ │ └── openssh_%.bbappend │ │ │ ├── portmap │ │ │ │ └── portmap_6.0.bbappend │ │ │ └── wpa-supplicant │ │ │ │ └── wpa-supplicant_%.bbappend │ │ ├── recipes-core │ │ │ ├── busybox │ │ │ │ └── busybox_%.bbappend │ │ │ ├── dbus │ │ │ │ └── dbus_%.bbappend │ │ │ ├── dropbear │ │ │ │ └── dropbear_%.bbappend │ │ │ ├── systemd │ │ │ │ └── systemd_%.bbappend │ │ │ └── util-linux │ │ │ │ └── util-linux_%.bbappend │ │ └── recipes-extended │ │ │ ├── at │ │ │ └── at_%.bbappend │ │ │ ├── cronie │ │ │ └── cronie_%.bbappend │ │ │ ├── lighttpd │ │ │ └── lighttpd_%.bbappend │ │ │ └── rpcbind │ │ │ └── rpcbind_%.bbappend │ └── recipes-core │ │ └── systemd │ │ └── systemd-machine-units_1.0.bb ├── meta-webserver │ ├── COPYING.MIT │ ├── README │ ├── conf │ │ └── layer.conf │ ├── licenses │ │ ├── OML │ │ └── Xdebug │ ├── recipes-httpd │ │ ├── apache-mod │ │ │ └── apache-websocket_git.bb │ │ ├── apache2 │ │ │ ├── apache2-native_2.4.23.bb │ │ │ ├── apache2 │ │ │ │ ├── apache-configure_perlbin.patch │ │ │ │ ├── apache-ssl-ltmain-rpath.patch │ │ │ │ ├── cve-2016-5387.patch │ │ │ │ ├── fix-libtool-name.patch │ │ │ │ ├── httpd-2.4.1-corelimit.patch │ │ │ │ ├── httpd-2.4.1-selinux.patch │ │ │ │ ├── httpd-2.4.4-export.patch │ │ │ │ ├── replace-lynx-to-curl-in-apachectl-script.patch │ │ │ │ └── server-makefile.patch │ │ │ ├── apache2_2.4.23.bb │ │ │ └── files │ │ │ │ ├── 0001-configure-use-pkg-config-for-PCRE-detection.patch │ │ │ │ ├── apache2-volatile.conf │ │ │ │ ├── apache2.service │ │ │ │ ├── configure-allow-to-disable-selinux-support.patch │ │ │ │ ├── httpd-2.4.3-fix-race-issue-of-dir-install.patch │ │ │ │ └── init │ │ ├── cherokee │ │ │ ├── cherokee │ │ │ │ ├── cherokee-install-configured.py-once.patch │ │ │ │ ├── cherokee.init │ │ │ │ └── cherokee.service │ │ │ └── cherokee_1.2.98.bb │ │ ├── hiawatha │ │ │ ├── files │ │ │ │ ├── hiawatha-init │ │ │ │ └── hiawatha.service │ │ │ └── hiawatha_10.3.bb │ │ ├── monkey │ │ │ ├── files │ │ │ │ ├── monkey.init │ │ │ │ └── monkey.service │ │ │ └── monkey_1.5.6.bb │ │ ├── nginx │ │ │ ├── files │ │ │ │ ├── nginx-cross.patch │ │ │ │ ├── nginx-volatile.conf │ │ │ │ ├── nginx.conf │ │ │ │ ├── nginx.init │ │ │ │ └── nginx.service │ │ │ ├── nginx.inc │ │ │ ├── nginx_1.10.2.bb │ │ │ └── nginx_1.11.5.bb │ │ ├── nostromo │ │ │ ├── files │ │ │ │ ├── 0001-GNUmakefile-add-possibility-to-override-variables.patch │ │ │ │ ├── nhttpd.conf │ │ │ │ ├── nostromo │ │ │ │ ├── tmpfiles.conf │ │ │ │ └── volatiles │ │ │ └── nostromo_1.9.6.bb │ │ └── sthttpd │ │ │ ├── sthttpd │ │ │ ├── init │ │ │ ├── thttpd.conf │ │ │ └── thttpd.service │ │ │ └── sthttpd_2.27.0.bb │ ├── recipes-php │ │ ├── phpmyadmin │ │ │ ├── phpmyadmin │ │ │ │ └── apache.conf │ │ │ └── phpmyadmin_4.6.3.bb │ │ └── xdebug │ │ │ └── xdebug_2.2.6.bb │ ├── recipes-support │ │ ├── fcgi │ │ │ ├── fcgi │ │ │ │ ├── Fix_EOF_not_declared_issue.patch │ │ │ │ └── add_foreign_to_AM_INIT_AUTOMAKE.patch │ │ │ └── fcgi_2.4.0.bb │ │ └── spawn-fcgi │ │ │ ├── spawn-fcgi-1.6.4 │ │ │ └── fix_configure_ipv6_test.patch │ │ │ └── spawn-fcgi_1.6.4.bb │ └── recipes-webadmin │ │ ├── netdata │ │ ├── netdata │ │ │ ├── 0001-Correct-Timeout-issue.patch │ │ │ ├── netdata.conf │ │ │ └── netdata.service │ │ └── netdata_git.bb │ │ └── webmin │ │ ├── files │ │ ├── disable-version-check.patch │ │ ├── exports-lib.pl.patch │ │ ├── init-exclude.patch │ │ ├── media-tomb.patch │ │ ├── mount-excludefs.patch │ │ ├── mysql-config-fix.patch │ │ ├── net-generic.patch │ │ ├── net-lib.pl.patch │ │ ├── nfs-export.patch │ │ ├── proftpd-config-fix.patch │ │ ├── remove-python2.3.patch │ │ ├── remove-startup-option.patch │ │ ├── samba-config-fix.patch │ │ └── setup.sh │ │ └── webmin_1.801.bb └── meta-xfce │ ├── README │ ├── classes │ ├── thunar-plugin.bbclass │ ├── xfce-app.bbclass │ ├── xfce-git.bbclass │ ├── xfce-panel-plugin.bbclass │ └── xfce.bbclass │ ├── conf │ └── layer.conf │ ├── recipes-apps │ ├── gigolo │ │ └── gigolo_0.4.2.bb │ ├── menulibre │ │ ├── files │ │ │ ├── 0001-add_launcher-Exit-early-if-no-row-is-selected.patch │ │ │ ├── 0002-setup.py-avoid-usr-share-share-paths.patch │ │ │ └── 0003-MenulibreXdg.py-fix-loading-of-desktop-files.patch │ │ └── menulibre_2.1.3.bb │ ├── mousepad │ │ └── mousepad_0.4.0.bb │ ├── orage │ │ └── orage_4.12.1.bb │ ├── ristretto │ │ └── ristretto_0.8.1.bb │ ├── xarchiver │ │ └── xarchiver_git.bb │ ├── xfce-polkit │ │ └── xfce-polkit_0.2.bb │ ├── xfce4-mixer │ │ └── xfce4-mixer_4.11.0.bb │ ├── xfce4-notifyd │ │ └── xfce4-notifyd_0.3.3.bb │ ├── xfce4-screenshooter │ │ ├── files │ │ │ └── 0001-Makefile.am-create-ouput-directory-for-desktop-file.patch │ │ └── xfce4-screenshooter_1.8.2.bb │ ├── xfce4-taskmanager │ │ └── xfce4-taskmanager_1.1.0.bb │ └── xfce4-terminal │ │ └── xfce4-terminal_0.8.1.bb │ ├── recipes-art │ ├── cursor-themes │ │ └── openzone_1.2.3.bb │ ├── rodent-icon-theme │ │ └── rodent-icon-theme_5.0.bb │ ├── xfce-dusk-gtk3 │ │ └── xfce-dusk-gtk3_1.3.bb │ └── xfwm4-themes │ │ └── xfwm4-themes_4.10.0.bb │ ├── recipes-bindings │ └── vala │ │ └── xfce4-vala_4.10.3.bb │ ├── recipes-core │ └── images │ │ └── core-image-minimal-xfce.bb │ ├── recipes-extended │ └── imsettings │ │ ├── imsettings │ │ ├── gtk-is-required-by-notify.patch │ │ └── multi-line-ACLOCAL_AMFLAGS-isnot-supported-by-autoreconf.patch │ │ └── imsettings_1.7.1.bb │ ├── recipes-multimedia │ ├── packagegroups │ │ └── packagegroup-xfce-multimedia.bb │ ├── parole │ │ └── parole_0.8.1.bb │ ├── xfce4-mpc-plugin │ │ └── xfce4-mpc-plugin_0.5.0.bb │ └── xfmpc │ │ └── xfmpc_0.2.3.bb │ ├── recipes-panel-plugins │ ├── battery │ │ └── xfce4-battery-plugin_1.1.0.bb │ ├── calculator │ │ └── xfce4-calculator-plugin_0.6.0.bb │ ├── clipman │ │ └── xfce4-clipman-plugin_1.4.0.bb │ ├── closebutton │ │ └── xfce4-closebutton-plugin_git.bb │ ├── cpufreq │ │ └── xfce4-cpufreq-plugin_1.1.3.bb │ ├── cpugraph │ │ └── xfce4-cpugraph-plugin_1.0.5.bb │ ├── datetime │ │ └── xfce4-datetime-plugin_0.7.0.bb │ ├── diskperf │ │ └── xfce4-diskperf-plugin_2.6.0.bb │ ├── embed │ │ └── xfce4-embed-plugin_1.0.0.bb │ ├── equake │ │ └── xfce4-equake-plugin_1.3.8.bb │ ├── eyes │ │ └── xfce4-eyes-plugin_4.4.5.bb │ ├── fsguard │ │ └── xfce4-fsguard-plugin_1.1.0.bb │ ├── genmon │ │ ├── files │ │ │ └── 0001-Allow-timer-period-to-be-set-at-250ms-resolution.-Pa.patch │ │ └── xfce4-genmon-plugin_3.4.0.bb │ ├── hotcorner │ │ └── xfce4-hotcorner-plugin_0.0.2.bb │ ├── kbdleds │ │ └── xfce4-kbdleds-plugin_0.0.6.bb │ ├── mailwatch │ │ └── xfce4-mailwatch-plugin_1.2.0.bb │ ├── mount │ │ └── xfce4-mount-plugin_0.6.4.bb │ ├── netload │ │ └── xfce4-netload-plugin_1.3.0.bb │ ├── notes │ │ ├── files │ │ │ └── 0001-main-status-icon.c-remove-deprecated-g_type_init.patch │ │ └── xfce4-notes-plugin_1.8.1.bb │ ├── places │ │ └── xfce4-places-plugin_1.7.0.bb │ ├── pulseaudio │ │ └── xfce4-pulseaudio-plugin_0.2.4.bb │ ├── sensors │ │ └── xfce4-sensors-plugin_1.2.6.bb │ ├── smartbookmark │ │ └── xfce4-smartbookmark-plugin_0.5.0.bb │ ├── systemload │ │ └── xfce4-systemload-plugin_1.2.0.bb │ ├── time-out │ │ └── xfce4-time-out-plugin_1.0.2.bb │ ├── timer │ │ └── xfce4-timer-plugin_1.6.0.bb │ ├── verve │ │ └── xfce4-verve-plugin_1.1.0.bb │ ├── wavelan │ │ └── xfce4-wavelan-plugin_0.6.0.bb │ ├── weather │ │ └── xfce4-weather-plugin_0.8.8.bb │ ├── whiskermenu │ │ └── xfce4-whiskermenu-plugin_2.0.2.bb │ └── xkb │ │ └── xfce4-xkb-plugin_0.7.1.bb │ ├── recipes-support │ └── vim │ │ └── vim_%.bbappend │ ├── recipes-thunar-plugins │ ├── archive │ │ └── thunar-archive-plugin_0.3.1.bb │ └── media-tags │ │ └── thunar-media-tags-plugin_0.2.1.bb │ └── recipes-xfce │ ├── exo │ ├── exo │ │ ├── 0001-Probable-fix-for-Thunar-detailed-view-Xfce-12916.patch │ │ ├── configure.patch │ │ ├── exo-no-tests-0.8.patch │ │ └── reduce-build-to-exo-csource-only.patch │ └── exo_0.11.1.bb │ ├── garcon │ ├── files │ │ └── 0001-xfce-applications.menu-don-t-bloat-settings-menu-by-.patch │ └── garcon_0.4.0.bb │ ├── gtk-xfce-engine │ └── gtk-xfce-engine_3.2.0.bb │ ├── libxfce4ui │ ├── files │ │ └── 0001-libxfce4kbd-private-xfce4-keyboard-shortcuts.xml-fix.patch │ └── libxfce4ui_4.12.1.bb │ ├── libxfce4util │ └── libxfce4util_4.12.1.bb │ ├── packagegroups │ ├── packagegroup-xfce-base.bb │ └── packagegroup-xfce-extended.bb │ ├── thunar-volman │ ├── thunar-volman │ │ └── 0001-Fix-return-with-no-value-in-function-returning-non-v.patch │ └── thunar-volman_0.8.1.bb │ ├── thunar │ └── thunar_1.6.10.bb │ ├── tumbler │ ├── tumbler │ │ └── 0001-configure-use-pkg-config-for-freetype2.patch │ └── tumbler_0.1.31.bb │ ├── xfce4-appfinder │ └── xfce4-appfinder_4.12.0.bb │ ├── xfce4-dev-tools │ └── xfce4-dev-tools_4.12.0.bb │ ├── xfce4-panel │ ├── files │ │ ├── 0001-clock-time-make-change-of-system-s-timezone-change-t.patch │ │ └── 0002-windowmenu-do-not-display-desktop-icon-when-no-windo.patch │ └── xfce4-panel_4.12.1.bb │ ├── xfce4-power-manager │ └── xfce4-power-manager_1.6.0.bb │ ├── xfce4-session │ ├── machine-host.bb │ ├── xfce4-session │ │ └── 0001-configure.in-hard-code-path-to-iceauth.patch │ └── xfce4-session_4.12.1.bb │ ├── xfce4-settings │ ├── files │ │ └── 0001-xsettings.xml-Set-default-themes.patch │ └── xfce4-settings_git.bb │ ├── xfconf │ └── xfconf_4.12.1.bb │ ├── xfdesktop │ └── xfdesktop_4.12.3.bb │ └── xfwm4 │ ├── files │ └── 0001-don-t-block-display-events-when-time-is-set-backward.patch │ └── xfwm4_4.12.3.bb ├── meta-ostro-bsp ├── COPYING.MIT ├── MAINTAINERS ├── README ├── conf │ ├── layer.conf │ └── machine │ │ ├── atom.conf │ │ ├── atomup.conf │ │ └── quark.conf ├── meta-edison-bsp │ ├── classes │ │ └── image_types_edison.bbclass │ ├── conf │ │ ├── layer.conf │ │ └── machine │ │ │ └── edison.conf │ ├── recipes-bsp │ │ ├── flashall │ │ │ ├── flashall-2.0 │ │ │ │ ├── FlashEdison.json │ │ │ │ ├── LICENSE │ │ │ │ ├── filter-dfu-out.js │ │ │ │ ├── flashall.bat │ │ │ │ ├── flashall.sh │ │ │ │ ├── helper │ │ │ │ │ ├── helper.html │ │ │ │ │ └── images │ │ │ │ │ │ ├── Edison-arduino-blink-led.png │ │ │ │ │ │ ├── Edison-arduino.png │ │ │ │ │ │ └── Edison-breakout-board.png │ │ │ │ └── pft-config-edison.xml │ │ │ └── flashall_2.0.bb │ │ ├── ifwi │ │ │ ├── ifwi │ │ │ │ └── ifwi-2015.01.30.tar.bz2 │ │ │ └── ifwi_2015.01.30.bb │ │ └── u-boot │ │ │ ├── files │ │ │ ├── 0001-Backport-compiler-gcc.h-from-4.2-kernel.patch │ │ │ ├── 0001-Fix-missing-stdint.h-include.patch │ │ │ ├── 0002-Fix-weak-external-function-references-for-gcc5.patch │ │ │ ├── edison.env │ │ │ ├── fw_env.config │ │ │ └── target_env │ │ │ │ ├── blankcdc.env │ │ │ │ ├── blankrndis.env │ │ │ │ ├── ifwi.env │ │ │ │ └── prod.env │ │ │ ├── u-boot-edison_2014.04.bb │ │ │ ├── u-boot-fw-utils-edison_2014.04.bb │ │ │ ├── u-boot-internal.inc │ │ │ ├── u-boot-osip.inc │ │ │ ├── u-boot-target-env.inc │ │ │ └── u-boot-tools-edison_2014.04.bb │ ├── recipes-connectivity │ │ ├── bluetooth-rfkill-event │ │ │ ├── COPYING │ │ │ ├── bluetooth-rfkill-event_1.0.bb │ │ │ └── files │ │ │ │ ├── bcm43341.conf │ │ │ │ ├── bluetooth-rfkill-event.service │ │ │ │ └── bluetooth_rfkill_event.c │ │ └── wpa_supplicant │ │ │ └── wpa-supplicant_%.bbappend │ ├── recipes-core │ │ ├── base-files │ │ │ ├── base-files │ │ │ │ └── fstab │ │ │ └── base-files_%.bbappend │ │ ├── images │ │ │ ├── core-image-initramfs-edison.bb │ │ │ └── core-image-sdk-edison.bb │ │ ├── initrdscripts │ │ │ ├── files │ │ │ │ └── init-boot.sh │ │ │ └── initramfs-boot_1.0.bbappend │ │ └── systemd │ │ │ ├── files │ │ │ └── wlan0.network │ │ │ └── systemd_%.bbappend │ └── recipes-kernel │ │ ├── bcm43340-bt │ │ └── bcm43340-bt_1.0.bb │ │ ├── bcm43340 │ │ ├── bcm43340-fw.bb │ │ └── bcm43340-mod.bb │ │ ├── linux │ │ ├── files │ │ │ ├── 0002-Always-inline-inline-functions.patch │ │ │ ├── 4.2-3.10-hack.patch │ │ │ └── defconfig │ │ └── linux-yocto-edison.bb │ │ ├── mcu-fw │ │ ├── files │ │ │ ├── LICENSE │ │ │ ├── intel_mcu.bin │ │ │ ├── mcu_fw_loader.service │ │ │ └── mcu_fw_loader.sh │ │ ├── mcu-fw-bin.bb │ │ └── mcu-fw-load.bb │ │ └── sst-fw │ │ ├── files │ │ └── fw_sst_119a.bin │ │ └── sst-fw.bb ├── recipes-bsp │ └── u-boot │ │ ├── u-boot │ │ └── 0001-Search-for-bootable-partitions-on-both-SD-and-eMMC.patch │ │ └── u-boot_2016.03.bbappend ├── recipes-core │ └── systemd │ │ ├── files │ │ └── runtime-watchdog.conf │ │ └── systemd-watchdog.bb ├── recipes-extended │ ├── ethtool │ │ ├── ethtool_%.bbappend │ │ └── files │ │ │ └── quark.patch │ ├── i2c-edison-board │ │ ├── files │ │ │ ├── COPYING │ │ │ ├── Makefile │ │ │ └── i2c-edison-mpu6050.c │ │ └── i2c-edison-board.bb │ ├── i2c-minnowmax-board │ │ ├── files │ │ │ ├── COPYING │ │ │ ├── Makefile │ │ │ ├── i2c-minnow-apds9960.c │ │ │ └── i2c-minnow-mpu6050.c │ │ └── i2c-minnowmax-board.bb │ ├── i2c-quark-board │ │ ├── files │ │ │ ├── COPYING │ │ │ ├── Makefile │ │ │ ├── i2c-quark-apds9960.c │ │ │ └── i2c-quark-mpu6050.c │ │ └── i2c-quark-board.bb │ ├── spi-minnowmax-board │ │ ├── files │ │ │ ├── COPYING │ │ │ ├── Makefile │ │ │ ├── modprobe.d │ │ │ │ ├── spi-minnow-at86rf230.conf.sample │ │ │ │ └── spi-minnow-cc2520.conf.sample │ │ │ ├── modules-load.d │ │ │ │ ├── at86rf230.conf.sample │ │ │ │ └── cc2520.conf.sample │ │ │ ├── spi-minnow-at86rf230.c │ │ │ ├── spi-minnow-board.c │ │ │ ├── spi-minnow-board.h │ │ │ └── spi-minnow-cc2520.c │ │ └── spi-minnowmax-board.bb │ └── spi-quark-board │ │ ├── files │ │ ├── COPYING │ │ ├── Makefile │ │ ├── modules-load.d │ │ │ └── at86rf230.conf.sample │ │ ├── spi-quark-at86rf230.c │ │ ├── spi-quark-board.c │ │ └── spi-quark-board.h │ │ └── spi-quark-board.bb ├── recipes-kernel │ └── linux-yocto │ │ ├── linux-ostro │ │ ├── atom │ │ │ └── defconfig │ │ ├── atomup │ │ │ └── defconfig │ │ ├── cleanup-defconfig.sh │ │ └── quark │ │ │ ├── PATCHv6-1-1-thermal-intel-Quark-SoC-X1000-DTS-thermal-driver.patch │ │ │ ├── defconfig │ │ │ ├── v4-1-2-firmware_loader-introduce-new-API---request_firmware_direct_full_path.patch │ │ │ └── v4-2-2-efi-an-sysfs-interface-for-user-to-update-efi-firmware.patch │ │ ├── linux-ostro_4.1.bb │ │ ├── linux-yocto-dev.bbappend │ │ ├── linux-yocto-edison.bbappend │ │ ├── linux-yocto │ │ ├── 0001-USB-usbip-fix-potential-out-of-bounds-write.patch │ │ ├── 0001-capabilities-ambient-capabilities.patch │ │ ├── 0001-edison-capabilities-ambient-capabilities.patch │ │ ├── 0001-ovl-setxattr-don-t-deadlock-when-called-from-ima_fix.patch │ │ ├── 0001-sched-cgroup-Fix-cleanup-cgroup-teardown-init.patch │ │ ├── 0001-v3.15.0-ARM-dts-am335x-boneblack-configure-i2c1-and-2.patch │ │ ├── 0002-capabilities-add-a-securebit-to-disable-PR_CAP_AMBIE.patch │ │ ├── 0002-edison-capabilities-add-a-securebit-to-disable-PR_CAP_AMBIE.patch │ │ ├── 0022-pca9685-PCA9685-PWM-and-GPIO-multi-function-device.patch │ │ ├── 0027-gpio-pca953x-add-drive-property.patch │ │ ├── 6lowpan-802154.cfg │ │ ├── 6lowpan-btle.cfg │ │ ├── 6lowpan.cfg │ │ ├── KEYS_Fix_keyring_ref_leak_in-join_session_keyring.patch │ │ ├── bluetooth.cfg │ │ ├── bootchart.cfg │ │ ├── broxton.cfg │ │ ├── can-spi.cfg │ │ ├── can-x86.cfg │ │ ├── can.cfg │ │ ├── debug-fs.cfg │ │ ├── debug-kernel.cfg │ │ ├── ecryptfs.cfg │ │ ├── edison-iptables.cfg │ │ ├── galileo2.cfg │ │ ├── gfx.cfg │ │ ├── iio.cfg │ │ ├── lockdep.cfg │ │ ├── nfc-i2c.cfg │ │ ├── nfc-spi.cfg │ │ ├── nfc.cfg │ │ ├── no-gfx.cfg │ │ ├── nspawn-devpts.cfg │ │ ├── nspawn-firewall.cfg │ │ ├── nspawn-fs.cfg │ │ ├── nspawn-netdev.cfg │ │ ├── security-tpm.cfg │ │ ├── security-x64.cfg │ │ ├── security-x86.cfg │ │ ├── security.cfg │ │ ├── sensors.cfg │ │ ├── usb-ethernet.cfg │ │ ├── usb-gadget.cfg │ │ ├── usb-serial.cfg │ │ ├── uspi.cfg │ │ └── wireless.cfg │ │ ├── linux-yocto_4.1.bbappend │ │ └── linux-yocto_4.4.bbappend └── recipes-support │ └── libgcrypt │ └── libgcrypt_%.bbappend ├── meta-ostro-fixes ├── conf │ └── layer.conf └── meta-fixes │ ├── recipes-connectivity │ └── openssl │ │ └── openssl_%.bbappend │ ├── recipes-core │ ├── glibc │ │ └── glibc_%.bbappend │ ├── gummiboot_git │ │ ├── gummiboot │ │ │ └── 0001-Workaround-remove-handling-of-custom-cmdline.patch │ │ └── gummiboot_git.bbappend │ ├── initrdscripts │ │ └── initramfs-framework │ │ │ ├── initramfs-framework │ │ │ ├── finish │ │ │ └── rootfs │ │ │ └── initramfs-framework_%.bbappend │ └── systemd │ │ ├── systemd │ │ └── 229 │ │ │ ├── 0001-nspawn-added-support-for-starting-DHCP-client-in-non.patch │ │ │ ├── 0001-nspawn-backoff-and-retry-if-firewall-modification-fa.patch │ │ │ └── 0001-nspawn-don-t-check-binary-OS-tree-before-all-mounts-.patch │ │ └── systemd_%.bbappend │ └── recipes-kernel │ └── linux │ ├── linux-%.bbappend │ └── linux │ ├── iot-app-fw-nspawn-devpts.cfg │ ├── iot-app-fw-nspawn-firewall.cfg │ ├── iot-app-fw-nspawn-fs.cfg │ └── iot-app-fw-nspawn-netdev.cfg ├── meta-ostro ├── COPYING.MIT ├── README ├── classes │ ├── buildhistory-extra.bbclass │ ├── image-dsk.bbclass │ ├── imagevariant.bbclass │ ├── ostro-image.bbclass │ ├── ostro-sanity.bbclass │ ├── ostro-update-alternatives.bbclass │ ├── ostro-version.bbclass │ ├── stateless.bbclass │ ├── supported-recipes.bbclass │ ├── systemd-sysusers.bbclass │ └── whitelist.bbclass ├── conf │ ├── bblayers.conf.sample │ ├── conf-notes.txt │ ├── distro │ │ ├── include │ │ │ ├── devtool-supported-recipes.txt │ │ │ ├── ostro-group │ │ │ ├── ostro-os-core-x11.inc │ │ │ ├── ostro-os-development.inc │ │ │ ├── ostro-os-production.inc │ │ │ ├── ostro-passwd │ │ │ ├── ostro-supported-recipes.txt │ │ │ ├── ostro_security_flags.inc │ │ │ ├── ostroproject-ci.inc │ │ │ └── stateless.inc │ │ └── ostro.conf │ ├── layer.conf │ ├── local.conf.sample │ ├── ostro-multilib.conf │ └── sdk-extra.conf ├── files │ ├── fs-perms.txt │ └── ostroprojectorg.key ├── fixes │ ├── meta-java │ │ └── recipes-core │ │ │ └── openjdk │ │ │ ├── openjdk-8_%.bbappend │ │ │ └── openjre-8_%.bbappend │ ├── meta-oic │ │ ├── recipes-apps │ │ │ ├── iotivity-sensorboard │ │ │ │ └── iotivity-sensorboard_%.bbappend │ │ │ └── iotivity-simple-client │ │ │ │ └── iotivity-simple-client_%.bbappend │ │ └── recipes-core │ │ │ └── iotivity │ │ │ └── iotivity_%.bbappend │ └── meta │ │ └── recipes-devtools │ │ └── python │ │ └── python-pygobject_%.bbappend ├── lib │ ├── devtool │ │ ├── __init__.py │ │ └── kconfig.py │ ├── image-dsk.py │ ├── oeqa │ │ └── selftest │ │ │ ├── __init__.py │ │ │ └── iotsstatetests.py │ ├── supportedrecipes.py │ └── supportedrecipesreport │ │ └── __init__.py ├── recipes-connectivity │ ├── avahi │ │ ├── avahi_%.bbappend │ │ └── files │ │ │ ├── avahi-ipv4.conf │ │ │ └── avahi-ipv6.conf │ ├── bluez5 │ │ ├── bluez5 │ │ │ └── bluez-enable-le-gatt-interfaces.patch │ │ └── bluez5_%.bbappend │ ├── caninitscripts │ │ ├── can-init-scripts_1.0.bb │ │ └── files │ │ │ ├── LICENSE │ │ │ ├── can-init │ │ │ ├── can-init.service │ │ │ └── start-can │ └── packagegroups │ │ └── packagegroup-core-can.bb ├── recipes-core │ ├── base-passwd │ │ ├── base-passwd_%.bbappend │ │ └── files │ │ │ ├── COPYING │ │ │ ├── group.master │ │ │ ├── passwd.master │ │ │ └── rfkill-udev.rules │ ├── busybox │ │ ├── busybox_%.bbappend │ │ └── files │ │ │ └── ostro.cfg │ ├── makeself │ │ └── makeself_2.2.0.bb │ ├── os-release │ │ └── os-release.bbappend │ ├── packagegroups │ │ ├── packagegroup-app-framework.bb │ │ ├── packagegroup-core-connectivity.bb │ │ ├── packagegroup-devkit.bb │ │ ├── packagegroup-iotivity.bb │ │ ├── packagegroup-java-jdk.bb │ │ ├── packagegroup-python-runtime.bb │ │ ├── packagegroup-soletta.bb │ │ └── packagegroup-tools-interactive.bb │ ├── systemd │ │ ├── systemd │ │ │ └── 0001-Workaround-remove-handling-of-custom-cmdline.patch │ │ └── systemd_%.bbappend │ ├── util-linux │ │ └── util-linux_%.bbappend │ └── vboxmanage │ │ ├── files │ │ ├── configure.patch │ │ ├── disable-guest-additions.patch │ │ ├── fix-linker-flags.patch │ │ ├── include-dir.patch │ │ ├── remove-x11.patch │ │ └── xpidl-build-fixes.patch │ │ └── vboxmanage-native_5.0.24.bb ├── recipes-devtools │ ├── mraa │ │ └── mraa_%.bbappend │ ├── rpm │ │ └── rpm_5.%.bbappend │ └── upm │ │ └── upm_%.bbappend ├── recipes-extended │ ├── libiio │ │ └── libiio_git.bb │ ├── ostro-6lowpan │ │ ├── files │ │ │ ├── ostro-6lowpan-start.sh │ │ │ ├── ostro-6lowpan-stop.sh │ │ │ └── ostro-6lowpan.service │ │ └── ostro-6lowpan.bb │ └── shadow │ │ └── shadow_%.bbappend ├── recipes-image │ └── images │ │ ├── files │ │ └── ima_policy_ostro │ │ ├── initramfs-framework-ima.bbappend │ │ ├── ostro-image-minimal.bb │ │ ├── ostro-image-noswupd.bb │ │ ├── ostro-image-swupd.bb │ │ └── ostro-initramfs.bb ├── recipes-security │ ├── ecryptfs-utils │ │ └── ecryptfs-utils_110.bb │ ├── groupcheck-settings-default │ │ ├── files │ │ │ └── default-groupcheck.policy │ │ └── groupcheck-settings-default_0.1.bb │ ├── groupcheck │ │ └── groupcheck_git.bb │ ├── gsignond-plugin-oauth │ │ └── gsignond-plugin-oauth_1.0.0.bb │ ├── gsignond-plugin-sasl │ │ └── gsignond-plugin-sasl_1.0.0.bb │ ├── gsignond │ │ └── gsignond_1.0.4.bb │ ├── iptables-settings-default │ │ ├── files │ │ │ ├── default-ip6tables.rules │ │ │ └── default-iptables.rules │ │ └── iptables-settings-default_0.1.bb │ ├── iptables │ │ ├── files │ │ │ ├── ip6tables.service.in │ │ │ └── iptables.service.in │ │ └── iptables_%.bbappend │ ├── libgsasl │ │ ├── libgsasl │ │ │ └── 0001-configure.ac-add-missing-AM_PROG_AR.patch │ │ └── libgsasl_1.8.0.bb │ ├── libgsignon-glib │ │ └── libgsignon-glib_2.4.1.bb │ └── openssh │ │ ├── files │ │ ├── openssh-ipv4.conf │ │ └── openssh-ipv6.conf │ │ └── openssh_%.bbappend ├── recipes-soletta │ ├── dev-app │ │ ├── files │ │ │ └── 0001-Add-firewall-rules-to-allow-access.patch │ │ └── soletta-dev-app_%.bbappend │ └── soletta │ │ ├── files │ │ └── config │ │ └── soletta_%.bbappend └── recipes-swupd │ ├── swupd-client │ ├── swupd-client │ │ ├── 0001-Disable-boot-file-heuristics.patch │ │ ├── efi-combo-trigger.service │ │ └── efi_combo_updater.c │ └── swupd-client_%.bbappend │ └── swupd-daemon │ └── swupd-daemon_0.0.1.bb ├── meta-security-isafw ├── .gitignore ├── COPYING.MIT ├── README.md ├── classes │ └── isafw.bbclass ├── conf │ └── layer.conf ├── lib │ └── isafw │ │ ├── __init__.py │ │ ├── isafw.py │ │ └── isaplugins │ │ ├── ISA_cfa_plugin.py │ │ ├── ISA_cve_plugin.py │ │ ├── ISA_fsa_plugin.py │ │ ├── ISA_kca_plugin.py │ │ ├── ISA_la_plugin.py │ │ ├── __init__.py │ │ └── configs │ │ ├── __init__.py │ │ ├── kca │ │ ├── __init__.py │ │ ├── arm.py │ │ ├── common.py │ │ └── x86.py │ │ └── la │ │ ├── approved-non-osi │ │ ├── exceptions │ │ ├── licenses │ │ └── violations └── recipes-devtools │ ├── checksec │ └── checksec_1.5-1.bb │ └── cve-check-tool │ ├── cve-check-tool_5.6.4.bb │ └── files │ ├── 0001-Check-for-malloc_trim-before-using-it.patch │ └── curl-allow-overriding-default-CA-certificate-file.patch ├── meta-selftest ├── COPYING.MIT ├── README ├── classes │ └── test_events.bbclass ├── conf │ ├── layer.conf │ └── machine │ │ └── qemux86copy.conf ├── files │ └── signing │ │ ├── key.pub │ │ └── key.secret ├── lib │ ├── devtool │ │ ├── __init__.py │ │ └── test.py │ └── oeqa │ │ └── runtime │ │ ├── selftest.json │ │ └── selftest.py └── recipes-test │ ├── aspell │ ├── aspell_0.0.0.1.bb │ └── aspell_0.60.6.1.bbappend │ ├── devtool │ ├── devtool-test-localonly.bb │ ├── devtool-test-localonly │ │ ├── file1 │ │ └── file2 │ ├── devtool-test-patch-gz.bb │ ├── devtool-test-patch-gz │ │ └── readme.patch.gz │ ├── devtool-test-subdir.bb │ ├── devtool-test-subdir │ │ ├── devtool-test-subdir.tar.gz │ │ └── testfile │ ├── devtool-upgrade-test1-1.5.3 │ │ └── 0001-Add-a-note-line-to-the-quick-reference.patch │ ├── devtool-upgrade-test1_1.5.3.bb │ ├── devtool-upgrade-test1_1.5.3.bb.upgraded │ ├── devtool-upgrade-test2_git.bb │ └── devtool-upgrade-test2_git.bb.upgraded │ ├── emptytest │ └── emptytest.bb │ ├── error │ └── error.bb │ ├── images │ ├── error-image.bb │ ├── oe-selftest-image.bb │ ├── test-empty-image.bb │ ├── wic-image-minimal.bb │ └── wic-image-minimal.wks │ ├── m4 │ └── m4_1.4.17.bbappend │ ├── man │ ├── man │ │ └── man-1.5h1-make.patch │ └── man_1.6g.bbappend │ ├── recipetool │ ├── files │ │ ├── add-file.patch │ │ ├── file1 │ │ ├── installscript.sh │ │ ├── selftest-replaceme-inst-func │ │ ├── selftest-replaceme-inst-globfile │ │ ├── selftest-replaceme-inst-todir-globfile │ │ ├── selftest-replaceme-orig │ │ ├── selftest-replaceme-src-globfile │ │ ├── selftest-replaceme-todir │ │ └── subdir │ │ │ └── fileinsubdir │ └── selftest-recipetool-appendfile.bb │ └── xcursor-transparent-theme │ └── xcursor-transparent-theme_%.bbappend ├── meta-skeleton ├── COPYING.MIT ├── conf │ ├── layer.conf │ ├── multilib-example.conf │ └── multilib-example2.conf ├── recipes-core │ └── busybox │ │ ├── busybox │ │ └── no_rfkill.cfg │ │ └── busybox_%.bbappend ├── recipes-kernel │ ├── hello-mod │ │ ├── files │ │ │ ├── COPYING │ │ │ ├── Makefile │ │ │ └── hello.c │ │ └── hello-mod_0.1.bb │ └── linux │ │ ├── linux-yocto-custom.bb │ │ └── linux-yocto-custom │ │ ├── 0001-linux-version-tweak.patch │ │ ├── feature.scc │ │ └── smp.cfg ├── recipes-multilib │ └── images │ │ └── core-image-multilib-example.bb └── recipes-skeleton │ ├── service │ ├── service │ │ ├── COPYRIGHT │ │ ├── skeleton │ │ └── skeleton_test.c │ └── service_0.1.bb │ └── useradd │ ├── useradd-example.bb │ └── useradd-example │ ├── file1 │ ├── file2 │ ├── file3 │ └── file4 ├── meta-soletta ├── AUTHORS ├── LICENSE ├── README.md ├── conf │ ├── distro │ │ └── smallos.conf │ └── layer.conf ├── recipes-configure │ ├── avahi │ │ └── avahi_%.bbappend │ └── kernel │ │ ├── files │ │ ├── ath9k_htc.cfg │ │ └── pwm.cfg │ │ └── linux-yocto_%.bbappend ├── recipes-modules │ ├── graphviz │ │ ├── graphviz │ │ │ ├── graphviz-engine-layout.service │ │ │ └── graphviz_no_mkdef_build.patch │ │ └── graphviz_2.38.0.bb │ ├── jsonschema │ │ ├── python3-jsonschema-native_2.4.0.bb │ │ ├── python3-jsonschema.inc │ │ └── python3-jsonschema_2.4.0.bb │ ├── libmicrohttpd │ │ └── libmicrohttpd_0.9.49.bb │ └── low-speed-spidev │ │ ├── files │ │ ├── COPYING │ │ ├── Makefile │ │ ├── low-speed-spidev.c │ │ └── low-speed-spidev.conf │ │ └── lss.bb └── recipes-soletta │ ├── dev-app │ ├── soletta-dev-app │ │ ├── soletta-dev-app-avahi-discover.service │ │ ├── soletta-dev-app-mac.sh │ │ └── soletta-dev-app.service │ └── soletta-dev-app_git.bb │ ├── images │ └── soletta-image.bb │ ├── soletta-demo-systemd-files │ ├── files │ │ ├── 10-automount-usbstick.rules │ │ ├── any.network │ │ ├── automount-handler@.service │ │ ├── on_boot.fbp │ │ ├── umount-handler@.service │ │ ├── warn-boot.service │ │ └── warn-boot.timer │ └── soletta-demo-systemd-files_0.1.bb │ └── soletta │ ├── files │ ├── 0001-test-fbp-drop-tests-that-may-timeout.patch │ ├── 0001-tests-don-t-make-regexp-tests-depend-on-machine-id.patch │ ├── i2c-dev.conf │ ├── iio-trig-sysfs.conf │ └── run-ptest │ └── soletta_git.bb ├── meta-swupd ├── .gitignore ├── COPYING.MIT ├── README ├── classes │ ├── swupd-image.bbclass │ ├── swupdbundle.bbclass │ └── swupdimage.bbclass ├── conf │ └── layer.conf ├── docs │ ├── Guide.md │ ├── Implementation.md │ └── Known Issues.md ├── lib │ └── swupd │ │ ├── __init__.py │ │ ├── bundles.py │ │ ├── path.py │ │ ├── rootfs.py │ │ └── utils.py ├── recipes-core │ ├── images │ │ └── core-image-minimal-swupd.bb │ ├── swupd-client │ │ ├── oe-swupd-helpers.bb │ │ ├── oe-swupd-helpers │ │ │ ├── catalog-trigger.service │ │ │ ├── clr_pre_update.sh │ │ │ ├── kernel_updater.sh │ │ │ ├── ldconfig-trigger.service │ │ │ ├── systemdboot_updater.sh │ │ │ ├── tmpfiles-trigger.service │ │ │ └── update-triggers.target │ │ ├── os-release.bbappend │ │ ├── swupd-client │ │ │ ├── 0001-Add-configure-option-to-re-enable-updating-of-config.patch │ │ │ ├── 0001-fix-enable-xattr.patch │ │ │ ├── Change-systemctl-path-to-OE-systemctl-path.patch │ │ │ └── ignore-xattrs-when-verifying-Manifest-files.patch │ │ └── swupd-client_git.bb │ └── swupd-server │ │ ├── swupd-server-3.2.5 │ │ ├── 0001-create_pack-rely-less-on-previous-builds.patch │ │ ├── 0001-delta.c-fix-xattr-test-after-patching.patch │ │ ├── 0001-swupd-create-update-alternative-input-layout.patch │ │ ├── 0001-type_change.c-allow-transition-dir-symlink.patch │ │ ├── 0002-add-logging-to-stdout.patch │ │ ├── 0002-create_pack-download-fullfile-on-demand-for-packs.patch │ │ ├── 0002-pack.c-do-not-clean-packstage.patch │ │ ├── 0003-create_pack-abort-delta-handling-early-when-impossib.patch │ │ ├── 0003-swupd_create_pack-download-original-files-on-demand-.patch │ │ ├── 0025-swupd_make_pack-fix-extracting-files-with-bsdtar.patch │ │ ├── 0026-fullfiles.c-fix-invalid-LOG-call.patch │ │ ├── 0027-update-control-over-parallelism.patch │ │ ├── 0028-enable-locales-in-all-programs.patch │ │ ├── 0029-fullfiles-use-libarchive-directly.patch │ │ └── swupd_create_fullfiles-avoid-segfault-when-nothing-c.patch │ │ ├── swupd-server │ │ ├── 0001-create_pack-rely-less-on-previous-builds.patch │ │ ├── 0001-swupd-create-update-alternative-input-layout.patch │ │ ├── 0001-type_change.c-allow-transition-dir-symlink.patch │ │ ├── 0002-add-logging-to-stdout.patch │ │ ├── 0002-create_pack-download-fullfile-on-demand-for-packs.patch │ │ ├── 0002-pack.c-do-not-clean-packstage.patch │ │ ├── 0003-create_pack-abort-delta-handling-early-when-impossib.patch │ │ ├── 0003-swupd_create_pack-download-original-files-on-demand-.patch │ │ ├── 0025-swupd_make_pack-fix-extracting-files-with-bsdtar.patch │ │ ├── 0026-fullfiles.c-fix-invalid-LOG-call.patch │ │ ├── 0027-update-control-over-parallelism.patch │ │ ├── 0028-enable-locales-in-all-programs.patch │ │ └── 0029-fullfiles-use-libarchive-directly.patch │ │ ├── swupd-server_3.2.5.bb │ │ └── swupd-server_git.bb ├── recipes-devtools │ └── bsdiff │ │ └── bsdiff_git.bb └── recipes-extended │ ├── hardlink │ └── hardlink_0.3.0.bb │ └── libarchive │ └── libarchive_%.bbappend ├── meta-yocto ├── .templateconf ├── LICENSE ├── README ├── README.hardware ├── meta-poky │ ├── classes │ │ └── poky-sanity.bbclass │ ├── conf │ │ ├── bblayers.conf.sample │ │ ├── conf-notes.txt │ │ ├── distro │ │ │ ├── include │ │ │ │ ├── maintainers.inc │ │ │ │ ├── poky-floating-revisions.inc │ │ │ │ └── poky-world-exclude.inc │ │ │ ├── poky-bleeding.conf │ │ │ ├── poky-lsb.conf │ │ │ ├── poky-tiny.conf │ │ │ └── poky.conf │ │ ├── layer.conf │ │ ├── local.conf.sample │ │ ├── local.conf.sample.extended │ │ ├── site.conf.sample │ │ └── toasterconf.json │ └── recipes-core │ │ ├── busybox │ │ ├── busybox │ │ │ └── poky-tiny │ │ │ │ └── defconfig │ │ └── busybox_%.bbappend │ │ ├── psplash │ │ ├── files │ │ │ └── psplash-poky-img.h │ │ └── psplash_git.bbappend │ │ └── tiny-init │ │ ├── files │ │ ├── init │ │ └── rc.local.sample │ │ └── tiny-init.bb ├── meta-yocto-bsp │ ├── conf │ │ ├── layer.conf │ │ └── machine │ │ │ ├── beaglebone.conf │ │ │ ├── edgerouter.conf │ │ │ ├── genericx86-64.conf │ │ │ ├── genericx86.conf │ │ │ ├── include │ │ │ └── genericx86-common.inc │ │ │ └── mpc8315e-rdb.conf │ ├── lib │ │ └── oeqa │ │ │ ├── controllers │ │ │ ├── __init__.py │ │ │ ├── beaglebonetarget.py │ │ │ ├── edgeroutertarget.py │ │ │ └── grubtarget.py │ │ │ ├── selftest │ │ │ ├── __init__.py │ │ │ ├── gummiboot.py │ │ │ └── systemd_boot.py │ │ │ └── yoctobsp.py │ ├── recipes-bsp │ │ ├── formfactor │ │ │ ├── formfactor │ │ │ │ ├── beaglebone │ │ │ │ │ └── machconfig │ │ │ │ ├── genericx86-64 │ │ │ │ │ └── machconfig │ │ │ │ └── genericx86 │ │ │ │ │ └── machconfig │ │ │ └── formfactor_0.0.bbappend │ │ └── gma500-gfx-check │ │ │ ├── gma500-gfx-check │ │ │ ├── gma500-gfx-check.conf │ │ │ └── gma500-gfx-check.sh │ │ │ └── gma500-gfx-check_1.0.bb │ ├── recipes-core │ │ └── packagegroups │ │ │ └── packagegroup-core-tools-profile.bbappend │ ├── recipes-graphics │ │ └── xorg-xserver │ │ │ ├── xserver-xf86-config │ │ │ ├── genericx86-64 │ │ │ │ └── xorg.conf │ │ │ └── genericx86 │ │ │ │ └── xorg.conf │ │ │ └── xserver-xf86-config_0.1.bbappend │ └── recipes-kernel │ │ └── linux │ │ ├── linux-yocto_4.1.bbappend │ │ ├── linux-yocto_4.4.bbappend │ │ └── linux-yocto_4.8.bbappend ├── meta-yocto │ └── conf │ │ └── layer.conf └── scripts │ ├── lib │ └── bsp │ │ ├── __init__.py │ │ ├── engine.py │ │ ├── help.py │ │ ├── kernel.py │ │ ├── substrate │ │ └── target │ │ │ └── arch │ │ │ ├── arm │ │ │ ├── .gitignore │ │ │ ├── conf │ │ │ │ └── machine │ │ │ │ │ └── machine.conf │ │ │ ├── recipes-graphics │ │ │ │ └── xorg-xserver │ │ │ │ │ ├── xserver-xf86-config │ │ │ │ │ ├── machine.noinstall │ │ │ │ │ └── machine │ │ │ │ │ │ └── xorg.conf │ │ │ │ │ └── xserver-xf86-config_0.1.bbappend │ │ │ └── recipes-kernel │ │ │ │ └── linux │ │ │ │ ├── files.noinstall │ │ │ │ ├── files │ │ │ │ ├── machine-non_hardware.cfg │ │ │ │ ├── machine-preempt-rt.scc │ │ │ │ ├── machine-standard.scc │ │ │ │ ├── machine-tiny.scc │ │ │ │ ├── machine-user-config.cfg │ │ │ │ ├── machine-user-features.scc │ │ │ │ ├── machine-user-patches.scc │ │ │ │ ├── machine.cfg │ │ │ │ └── machine.scc │ │ │ │ ├── kernel-list.noinstall │ │ │ │ ├── linux-yocto-dev.bbappend │ │ │ │ ├── linux-yocto-tiny_4.1.bbappend │ │ │ │ ├── linux-yocto-tiny_4.4.bbappend │ │ │ │ ├── linux-yocto-tiny_4.8.bbappend │ │ │ │ ├── linux-yocto_4.1.bbappend │ │ │ │ ├── linux-yocto_4.4.bbappend │ │ │ │ └── linux-yocto_4.8.bbappend │ │ │ ├── common │ │ │ ├── COPYING.MIT │ │ │ ├── README │ │ │ ├── README.sources │ │ │ ├── binary │ │ │ │ └── .gitignore │ │ │ ├── conf │ │ │ │ └── layer.conf │ │ │ ├── recipes-bsp │ │ │ │ └── formfactor │ │ │ │ │ ├── formfactor │ │ │ │ │ ├── machine.noinstall │ │ │ │ │ └── machine │ │ │ │ │ │ └── machconfig │ │ │ │ │ └── formfactor_0.0.bbappend │ │ │ └── recipes-kernel │ │ │ │ └── linux │ │ │ │ ├── kernel-list.noinstall │ │ │ │ ├── linux-yocto-custom.bb │ │ │ │ ├── linux-yocto-custom.noinstall │ │ │ │ └── linux-yocto-custom │ │ │ │ ├── defconfig │ │ │ │ ├── machine-user-config.cfg │ │ │ │ ├── machine-user-patches.scc │ │ │ │ ├── machine.cfg │ │ │ │ └── machine.scc │ │ │ ├── i386 │ │ │ ├── conf │ │ │ │ └── machine │ │ │ │ │ └── machine.conf │ │ │ ├── recipes-graphics │ │ │ │ └── xorg-xserver │ │ │ │ │ ├── xserver-xf86-config │ │ │ │ │ ├── machine.noinstall │ │ │ │ │ └── machine │ │ │ │ │ │ └── xorg.conf │ │ │ │ │ └── xserver-xf86-config_0.1.bbappend │ │ │ └── recipes-kernel │ │ │ │ └── linux │ │ │ │ ├── files.noinstall │ │ │ │ ├── files │ │ │ │ ├── machine-preempt-rt.scc │ │ │ │ ├── machine-standard.scc │ │ │ │ ├── machine-tiny.scc │ │ │ │ ├── machine-user-config.cfg │ │ │ │ ├── machine-user-features.scc │ │ │ │ ├── machine-user-patches.scc │ │ │ │ ├── machine.cfg │ │ │ │ └── machine.scc │ │ │ │ ├── kernel-list.noinstall │ │ │ │ ├── linux-yocto-dev.bbappend │ │ │ │ ├── linux-yocto-tiny_4.1.bbappend │ │ │ │ ├── linux-yocto-tiny_4.4.bbappend │ │ │ │ ├── linux-yocto-tiny_4.8.bbappend │ │ │ │ ├── linux-yocto_4.1.bbappend │ │ │ │ ├── linux-yocto_4.4.bbappend │ │ │ │ └── linux-yocto_4.8.bbappend │ │ │ ├── layer │ │ │ ├── COPYING.MIT │ │ │ ├── README │ │ │ ├── conf │ │ │ │ └── layer.conf │ │ │ ├── layer-questions.noinstall │ │ │ ├── recipes-example-bbappend.noinstall │ │ │ ├── recipes-example-bbappend │ │ │ │ └── example-bbappend │ │ │ │ │ ├── example-bbappend-version.bbappend │ │ │ │ │ ├── example-bbappend-version.noinstall │ │ │ │ │ └── example-bbappend-version │ │ │ │ │ └── example.patch │ │ │ ├── recipes-example.noinstall │ │ │ └── recipes-example │ │ │ │ └── example │ │ │ │ ├── example-recipe-0.1.bb │ │ │ │ ├── example-recipe-0.1.noinstall │ │ │ │ └── example-recipe-0.1 │ │ │ │ ├── example.patch │ │ │ │ └── helloworld.c │ │ │ ├── mips │ │ │ ├── .gitignore │ │ │ ├── conf │ │ │ │ └── machine │ │ │ │ │ └── machine.conf │ │ │ └── recipes-kernel │ │ │ │ └── linux │ │ │ │ ├── files.noinstall │ │ │ │ ├── files │ │ │ │ ├── machine-preempt-rt.scc │ │ │ │ ├── machine-standard.scc │ │ │ │ ├── machine-tiny.scc │ │ │ │ ├── machine-user-config.cfg │ │ │ │ ├── machine-user-features.scc │ │ │ │ ├── machine-user-patches.scc │ │ │ │ ├── machine.cfg │ │ │ │ └── machine.scc │ │ │ │ ├── kernel-list.noinstall │ │ │ │ ├── linux-yocto-dev.bbappend │ │ │ │ ├── linux-yocto-tiny_4.1.bbappend │ │ │ │ ├── linux-yocto-tiny_4.4.bbappend │ │ │ │ ├── linux-yocto-tiny_4.8.bbappend │ │ │ │ ├── linux-yocto_4.1.bbappend │ │ │ │ ├── linux-yocto_4.4.bbappend │ │ │ │ └── linux-yocto_4.8.bbappend │ │ │ ├── mips64 │ │ │ ├── .gitignore │ │ │ ├── conf │ │ │ │ └── machine │ │ │ │ │ └── machine.conf │ │ │ └── recipes-kernel │ │ │ │ └── linux │ │ │ │ ├── files.noinstall │ │ │ │ ├── files │ │ │ │ ├── machine-preempt-rt.scc │ │ │ │ ├── machine-standard.scc │ │ │ │ ├── machine-tiny.scc │ │ │ │ ├── machine-user-config.cfg │ │ │ │ ├── machine-user-features.scc │ │ │ │ ├── machine-user-patches.scc │ │ │ │ ├── machine.cfg │ │ │ │ └── machine.scc │ │ │ │ ├── kernel-list.noinstall │ │ │ │ ├── linux-yocto-dev.bbappend │ │ │ │ ├── linux-yocto-tiny_4.1.bbappend │ │ │ │ ├── linux-yocto-tiny_4.4.bbappend │ │ │ │ ├── linux-yocto-tiny_4.8.bbappend │ │ │ │ ├── linux-yocto_4.1.bbappend │ │ │ │ ├── linux-yocto_4.4.bbappend │ │ │ │ └── linux-yocto_4.8.bbappend │ │ │ ├── powerpc │ │ │ ├── .gitignore │ │ │ ├── conf │ │ │ │ └── machine │ │ │ │ │ └── machine.conf │ │ │ └── recipes-kernel │ │ │ │ └── linux │ │ │ │ ├── files.noinstall │ │ │ │ ├── files │ │ │ │ ├── machine-preempt-rt.scc │ │ │ │ ├── machine-standard.scc │ │ │ │ ├── machine-tiny.scc │ │ │ │ ├── machine-user-config.cfg │ │ │ │ ├── machine-user-features.scc │ │ │ │ ├── machine-user-patches.scc │ │ │ │ ├── machine.cfg │ │ │ │ └── machine.scc │ │ │ │ ├── kernel-list.noinstall │ │ │ │ ├── linux-yocto-dev.bbappend │ │ │ │ ├── linux-yocto-tiny_4.1.bbappend │ │ │ │ ├── linux-yocto-tiny_4.4.bbappend │ │ │ │ ├── linux-yocto-tiny_4.8.bbappend │ │ │ │ ├── linux-yocto_4.1.bbappend │ │ │ │ ├── linux-yocto_4.4.bbappend │ │ │ │ └── linux-yocto_4.8.bbappend │ │ │ ├── qemu │ │ │ ├── conf │ │ │ │ └── machine │ │ │ │ │ └── machine.conf │ │ │ ├── recipes-core │ │ │ │ └── init-ifupdown │ │ │ │ │ ├── init-ifupdown │ │ │ │ │ ├── machine.noinstall │ │ │ │ │ └── machine │ │ │ │ │ │ └── interfaces │ │ │ │ │ └── init-ifupdown_1.0.bbappend │ │ │ ├── recipes-graphics │ │ │ │ └── xorg-xserver │ │ │ │ │ ├── xserver-xf86-config │ │ │ │ │ ├── machine.noinstall │ │ │ │ │ └── machine │ │ │ │ │ │ └── xorg.conf │ │ │ │ │ └── xserver-xf86-config_0.1.bbappend │ │ │ └── recipes-kernel │ │ │ │ └── linux │ │ │ │ ├── files.noinstall │ │ │ │ ├── files │ │ │ │ ├── machine-preempt-rt.scc │ │ │ │ ├── machine-standard.scc │ │ │ │ ├── machine-tiny.scc │ │ │ │ ├── machine-user-config.cfg │ │ │ │ ├── machine-user-features.scc │ │ │ │ ├── machine-user-patches.scc │ │ │ │ ├── machine.cfg │ │ │ │ └── machine.scc │ │ │ │ ├── kernel-list.noinstall │ │ │ │ ├── linux-yocto-dev.bbappend │ │ │ │ ├── linux-yocto-tiny_4.1.bbappend │ │ │ │ ├── linux-yocto-tiny_4.4.bbappend │ │ │ │ ├── linux-yocto-tiny_4.8.bbappend │ │ │ │ ├── linux-yocto_4.1.bbappend │ │ │ │ ├── linux-yocto_4.4.bbappend │ │ │ │ └── linux-yocto_4.8.bbappend │ │ │ └── x86_64 │ │ │ ├── .gitignore │ │ │ ├── conf │ │ │ └── machine │ │ │ │ └── machine.conf │ │ │ ├── recipes-graphics │ │ │ └── xorg-xserver │ │ │ │ ├── xserver-xf86-config │ │ │ │ ├── machine.noinstall │ │ │ │ └── machine │ │ │ │ │ └── xorg.conf │ │ │ │ └── xserver-xf86-config_0.1.bbappend │ │ │ └── recipes-kernel │ │ │ └── linux │ │ │ ├── files.noinstall │ │ │ ├── files │ │ │ ├── machine-preempt-rt.scc │ │ │ ├── machine-standard.scc │ │ │ ├── machine-tiny.scc │ │ │ ├── machine-user-config.cfg │ │ │ ├── machine-user-features.scc │ │ │ ├── machine-user-patches.scc │ │ │ ├── machine.cfg │ │ │ └── machine.scc │ │ │ ├── kernel-list.noinstall │ │ │ ├── linux-yocto-dev.bbappend │ │ │ ├── linux-yocto-tiny_4.1.bbappend │ │ │ ├── linux-yocto-tiny_4.4.bbappend │ │ │ ├── linux-yocto-tiny_4.8.bbappend │ │ │ ├── linux-yocto_4.1.bbappend │ │ │ ├── linux-yocto_4.4.bbappend │ │ │ └── linux-yocto_4.8.bbappend │ │ └── tags.py │ ├── yocto-bsp │ ├── yocto-kernel │ └── yocto-layer ├── meta ├── COPYING.GPLv2 ├── COPYING.MIT ├── classes │ ├── allarch.bbclass │ ├── archiver.bbclass │ ├── autotools-brokensep.bbclass │ ├── autotools.bbclass │ ├── base.bbclass │ ├── bash-completion.bbclass │ ├── bin_package.bbclass │ ├── binconfig-disabled.bbclass │ ├── binconfig.bbclass │ ├── blacklist.bbclass │ ├── bluetooth.bbclass │ ├── bugzilla.bbclass │ ├── buildhistory.bbclass │ ├── buildstats-summary.bbclass │ ├── buildstats.bbclass │ ├── ccache.bbclass │ ├── chrpath.bbclass │ ├── clutter.bbclass │ ├── cmake.bbclass │ ├── cml1.bbclass │ ├── compress_doc.bbclass │ ├── copyleft_compliance.bbclass │ ├── copyleft_filter.bbclass │ ├── core-image.bbclass │ ├── cpan-base.bbclass │ ├── cpan.bbclass │ ├── cpan_build.bbclass │ ├── cross-canadian.bbclass │ ├── cross.bbclass │ ├── crosssdk.bbclass │ ├── cve-check.bbclass │ ├── debian.bbclass │ ├── deploy.bbclass │ ├── devshell.bbclass │ ├── distro_features_check.bbclass │ ├── distrodata.bbclass │ ├── distutils-base.bbclass │ ├── distutils-common-base.bbclass │ ├── distutils-tools.bbclass │ ├── distutils.bbclass │ ├── distutils3-base.bbclass │ ├── distutils3.bbclass │ ├── externalsrc.bbclass │ ├── extrausers.bbclass │ ├── fontcache.bbclass │ ├── fs-uuid.bbclass │ ├── gconf.bbclass │ ├── gettext.bbclass │ ├── gio-module-cache.bbclass │ ├── gnome.bbclass │ ├── gnomebase.bbclass │ ├── gobject-introspection-data.bbclass │ ├── gobject-introspection.bbclass │ ├── grub-efi.bbclass │ ├── gsettings.bbclass │ ├── gtk-doc.bbclass │ ├── gtk-icon-cache.bbclass │ ├── gtk-immodules-cache.bbclass │ ├── gummiboot.bbclass │ ├── gzipnative.bbclass │ ├── icecc.bbclass │ ├── image-buildinfo.bbclass │ ├── image-live.bbclass │ ├── image-mklibs.bbclass │ ├── image-prelink.bbclass │ ├── image-vm.bbclass │ ├── image.bbclass │ ├── image_types.bbclass │ ├── image_types_uboot.bbclass │ ├── insane.bbclass │ ├── kernel-arch.bbclass │ ├── kernel-fitimage.bbclass │ ├── kernel-grub.bbclass │ ├── kernel-module-split.bbclass │ ├── kernel-uboot.bbclass │ ├── kernel-uimage.bbclass │ ├── kernel-yocto.bbclass │ ├── kernel.bbclass │ ├── kernelsrc.bbclass │ ├── lib_package.bbclass │ ├── libc-common.bbclass │ ├── libc-package.bbclass │ ├── license.bbclass │ ├── linux-kernel-base.bbclass │ ├── linuxloader.bbclass │ ├── live-vm-common.bbclass │ ├── logging.bbclass │ ├── manpages.bbclass │ ├── meta.bbclass │ ├── metadata_scm.bbclass │ ├── migrate_localcount.bbclass │ ├── mime.bbclass │ ├── mirrors.bbclass │ ├── module-base.bbclass │ ├── module.bbclass │ ├── multilib.bbclass │ ├── multilib_global.bbclass │ ├── multilib_header.bbclass │ ├── native.bbclass │ ├── nativesdk.bbclass │ ├── nopackages.bbclass │ ├── npm.bbclass │ ├── oelint.bbclass │ ├── own-mirrors.bbclass │ ├── package.bbclass │ ├── package_deb.bbclass │ ├── package_ipk.bbclass │ ├── package_rpm.bbclass │ ├── package_tar.bbclass │ ├── packagedata.bbclass │ ├── packagefeed-stability.bbclass │ ├── packagegroup.bbclass │ ├── patch.bbclass │ ├── perlnative.bbclass │ ├── pixbufcache.bbclass │ ├── pkgconfig.bbclass │ ├── populate_sdk.bbclass │ ├── populate_sdk_base.bbclass │ ├── populate_sdk_ext.bbclass │ ├── prexport.bbclass │ ├── primport.bbclass │ ├── ptest-gnome.bbclass │ ├── ptest.bbclass │ ├── python-dir.bbclass │ ├── python3-dir.bbclass │ ├── python3native.bbclass │ ├── pythonnative.bbclass │ ├── qemu.bbclass │ ├── qemuboot.bbclass │ ├── recipe_sanity.bbclass │ ├── relocatable.bbclass │ ├── remove-libtool.bbclass │ ├── report-error.bbclass │ ├── rm_work.bbclass │ ├── rootfs-postcommands.bbclass │ ├── rootfs_deb.bbclass │ ├── rootfs_ipk.bbclass │ ├── rootfs_rpm.bbclass │ ├── rootfsdebugfiles.bbclass │ ├── sanity.bbclass │ ├── scons.bbclass │ ├── setuptools.bbclass │ ├── setuptools3.bbclass │ ├── sign_ipk.bbclass │ ├── sign_package_feed.bbclass │ ├── sign_rpm.bbclass │ ├── siteconfig.bbclass │ ├── siteinfo.bbclass │ ├── spdx.bbclass │ ├── sstate.bbclass │ ├── staging.bbclass │ ├── syslinux.bbclass │ ├── systemd-boot.bbclass │ ├── systemd.bbclass │ ├── terminal.bbclass │ ├── testexport.bbclass │ ├── testimage-auto.bbclass │ ├── testimage.bbclass │ ├── testsdk.bbclass │ ├── texinfo.bbclass │ ├── tinderclient.bbclass │ ├── toaster.bbclass │ ├── toolchain-scripts-base.bbclass │ ├── toolchain-scripts.bbclass │ ├── typecheck.bbclass │ ├── uboot-config.bbclass │ ├── uboot-extlinux-config.bbclass │ ├── uboot-sign.bbclass │ ├── uninative.bbclass │ ├── update-alternatives.bbclass │ ├── update-rc.d.bbclass │ ├── upstream-version-is-even.bbclass │ ├── useradd-staticids.bbclass │ ├── useradd.bbclass │ ├── useradd_base.bbclass │ ├── utility-tasks.bbclass │ ├── utils.bbclass │ ├── vala.bbclass │ └── waf.bbclass ├── conf │ ├── abi_version.conf │ ├── bblayers.conf.sample │ ├── bitbake.conf │ ├── conf-notes.txt │ ├── distro │ │ ├── defaultsetup.conf │ │ └── include │ │ │ ├── as-needed.inc │ │ │ ├── default-distrovars.inc │ │ │ ├── default-providers.inc │ │ │ ├── default-versions.inc │ │ │ ├── distro_alias.inc │ │ │ ├── no-static-libs.inc │ │ │ ├── security_flags.inc │ │ │ ├── tclibc-baremetal.inc │ │ │ ├── tclibc-glibc.inc │ │ │ ├── tclibc-musl.inc │ │ │ ├── tcmode-default.inc │ │ │ ├── uninative-flags.inc │ │ │ ├── upstream_tracking.inc │ │ │ ├── world-broken.inc │ │ │ └── yocto-uninative.inc │ ├── documentation.conf │ ├── layer.conf │ ├── licenses.conf │ ├── local.conf.sample │ ├── local.conf.sample.extended │ ├── machine-sdk │ │ ├── i586.conf │ │ ├── i686.conf │ │ └── x86_64.conf │ ├── machine │ │ ├── include │ │ │ ├── README │ │ │ ├── arm │ │ │ │ ├── README │ │ │ │ ├── arch-arm.inc │ │ │ │ ├── arch-arm64.inc │ │ │ │ ├── arch-armv4.inc │ │ │ │ ├── arch-armv5-dsp.inc │ │ │ │ ├── arch-armv5.inc │ │ │ │ ├── arch-armv6.inc │ │ │ │ ├── arch-armv7a.inc │ │ │ │ ├── arch-armv7ve.inc │ │ │ │ ├── arch-armv8.inc │ │ │ │ ├── feature-arm-neon.inc │ │ │ │ ├── feature-arm-thumb.inc │ │ │ │ └── feature-arm-vfp.inc │ │ │ ├── mips │ │ │ │ ├── README │ │ │ │ ├── arch-mips.inc │ │ │ │ ├── feature-mips-mips16e.inc │ │ │ │ └── tune-mips-24k.inc │ │ │ ├── powerpc │ │ │ │ ├── README │ │ │ │ ├── arch-powerpc.inc │ │ │ │ └── arch-powerpc64.inc │ │ │ ├── qemu.inc │ │ │ ├── qemuboot-mips.inc │ │ │ ├── qemuboot-x86.inc │ │ │ ├── sh │ │ │ │ ├── README │ │ │ │ └── arch-sh.inc │ │ │ ├── soc-family.inc │ │ │ ├── tune-arm1136jf-s.inc │ │ │ ├── tune-arm920t.inc │ │ │ ├── tune-arm926ejs.inc │ │ │ ├── tune-arm9tdmi.inc │ │ │ ├── tune-atom.inc │ │ │ ├── tune-c3.inc │ │ │ ├── tune-core2.inc │ │ │ ├── tune-corei7.inc │ │ │ ├── tune-cortexa15.inc │ │ │ ├── tune-cortexa17.inc │ │ │ ├── tune-cortexa5.inc │ │ │ ├── tune-cortexa7.inc │ │ │ ├── tune-cortexa8.inc │ │ │ ├── tune-cortexa9.inc │ │ │ ├── tune-ep9312.inc │ │ │ ├── tune-i586-nlp.inc │ │ │ ├── tune-i586.inc │ │ │ ├── tune-iwmmxt.inc │ │ │ ├── tune-mips32.inc │ │ │ ├── tune-mips32r2.inc │ │ │ ├── tune-mips32r6.inc │ │ │ ├── tune-mips64.inc │ │ │ ├── tune-mips64r2.inc │ │ │ ├── tune-mips64r6.inc │ │ │ ├── tune-octeon.inc │ │ │ ├── tune-power5.inc │ │ │ ├── tune-power6.inc │ │ │ ├── tune-power7.inc │ │ │ ├── tune-ppc476.inc │ │ │ ├── tune-ppc603e.inc │ │ │ ├── tune-ppc7400.inc │ │ │ ├── tune-ppce300c2.inc │ │ │ ├── tune-ppce300c3.inc │ │ │ ├── tune-ppce500.inc │ │ │ ├── tune-ppce500mc.inc │ │ │ ├── tune-ppce500v2.inc │ │ │ ├── tune-ppce5500.inc │ │ │ ├── tune-ppce6500.inc │ │ │ ├── tune-sh3.inc │ │ │ ├── tune-sh4.inc │ │ │ ├── tune-strongarm1100.inc │ │ │ ├── tune-supersparc.inc │ │ │ ├── tune-thunderx.inc │ │ │ ├── tune-xscale.inc │ │ │ ├── x86-base.inc │ │ │ └── x86 │ │ │ │ ├── README │ │ │ │ └── arch-x86.inc │ │ ├── qemuarm.conf │ │ ├── qemuarm64.conf │ │ ├── qemumips.conf │ │ ├── qemumips64.conf │ │ ├── qemuppc.conf │ │ ├── qemux86-64.conf │ │ └── qemux86.conf │ ├── migrate_localcount.conf │ ├── multilib.conf │ ├── prexport.conf │ ├── primport.conf │ ├── sanity.conf │ └── site.conf.sample ├── files │ ├── common-licenses │ │ ├── AAL │ │ ├── AFL-1.2 │ │ ├── AFL-2.0 │ │ ├── AFL-2.1 │ │ ├── AFL-3.0 │ │ ├── AGPL-3.0 │ │ ├── ANTLR-PD │ │ ├── APL-1.0 │ │ ├── APSL-1.0 │ │ ├── APSL-1.1 │ │ ├── APSL-1.2 │ │ ├── APSL-2.0 │ │ ├── Adobe │ │ ├── Apache-1.0 │ │ ├── Apache-1.1 │ │ ├── Apache-2.0 │ │ ├── Artistic-1.0 │ │ ├── Artistic-2.0 │ │ ├── BSD │ │ ├── BSD-0-Clause │ │ ├── BSD-2-Clause │ │ ├── BSD-3-Clause │ │ ├── BSD-4-Clause │ │ ├── BSL-1.0 │ │ ├── BitstreamVera │ │ ├── CATOSL-1.1 │ │ ├── CC-BY-1.0 │ │ ├── CC-BY-2.0 │ │ ├── CC-BY-2.5 │ │ ├── CC-BY-3.0 │ │ ├── CC-BY-NC-1.0 │ │ ├── CC-BY-NC-2.0 │ │ ├── CC-BY-NC-2.5 │ │ ├── CC-BY-NC-3.0 │ │ ├── CC-BY-NC-ND-1.0 │ │ ├── CC-BY-NC-ND-2.0 │ │ ├── CC-BY-NC-ND-2.5 │ │ ├── CC-BY-NC-ND-3.0 │ │ ├── CC-BY-NC-SA-1.0 │ │ ├── CC-BY-NC-SA-2.0 │ │ ├── CC-BY-NC-SA-2.5 │ │ ├── CC-BY-NC-SA-3.0 │ │ ├── CC-BY-ND-1.0 │ │ ├── CC-BY-ND-2.0 │ │ ├── CC-BY-ND-2.5 │ │ ├── CC-BY-ND-3.0 │ │ ├── CC-BY-SA-1.0 │ │ ├── CC-BY-SA-2.0 │ │ ├── CC-BY-SA-2.5 │ │ ├── CC-BY-SA-3.0 │ │ ├── CC0-1.0 │ │ ├── CDDL-1.0 │ │ ├── CECILL-1.0 │ │ ├── CECILL-2.0 │ │ ├── CECILL-B │ │ ├── CECILL-C │ │ ├── CPAL-1.0 │ │ ├── CPL-1.0 │ │ ├── CUA-OPL-1.0 │ │ ├── ClArtistic │ │ ├── DSSSL │ │ ├── ECL-1.0 │ │ ├── ECL-2.0 │ │ ├── EDL-1.0 │ │ ├── EFL-1.0 │ │ ├── EFL-2.0 │ │ ├── EPL-1.0 │ │ ├── EUDatagrid │ │ ├── EUPL-1.0 │ │ ├── EUPL-1.1 │ │ ├── Elfutils-Exception │ │ ├── Entessa │ │ ├── ErlPL-1.1 │ │ ├── FSF-Unlimited │ │ ├── Fair │ │ ├── Frameworx-1.0 │ │ ├── FreeType │ │ ├── GFDL-1.1 │ │ ├── GFDL-1.2 │ │ ├── GFDL-1.3 │ │ ├── GPL-1.0 │ │ ├── GPL-2-with-bison-exception │ │ ├── GPL-2.0 │ │ ├── GPL-2.0-with-GCC-exception │ │ ├── GPL-2.0-with-OpenSSL-exception │ │ ├── GPL-2.0-with-autoconf-exception │ │ ├── GPL-2.0-with-classpath-exception │ │ ├── GPL-2.0-with-font-exception │ │ ├── GPL-3.0 │ │ ├── GPL-3.0-with-GCC-exception │ │ ├── GPL-3.0-with-autoconf-exception │ │ ├── HPND │ │ ├── ICU │ │ ├── IPA │ │ ├── IPL-1.0 │ │ ├── ISC │ │ ├── LGPL-2.0 │ │ ├── LGPL-2.1 │ │ ├── LGPL-3.0 │ │ ├── LPL-1.02 │ │ ├── LPPL-1.0 │ │ ├── LPPL-1.1 │ │ ├── LPPL-1.2 │ │ ├── LPPL-1.3c │ │ ├── Libpng │ │ ├── MIT │ │ ├── MPL-1.0 │ │ ├── MPL-1.1 │ │ ├── MPL-2.0 │ │ ├── MS-PL │ │ ├── MS-RL │ │ ├── MirOS │ │ ├── Motosoto │ │ ├── Multics │ │ ├── NASA-1.3 │ │ ├── NCSA │ │ ├── NGPL │ │ ├── NPOSL-3.0 │ │ ├── NTP │ │ ├── Nauman │ │ ├── Nokia │ │ ├── OASIS │ │ ├── OCLC-2.0 │ │ ├── ODbL-1.0 │ │ ├── OFL-1.1 │ │ ├── OGTSL │ │ ├── OLDAP-2.8 │ │ ├── OSL-1.0 │ │ ├── OSL-2.0 │ │ ├── OSL-3.0 │ │ ├── OpenSSL │ │ ├── PD │ │ ├── PHP-3.0 │ │ ├── ParaTypeFFL-1.3 │ │ ├── PostgreSQL │ │ ├── Proprietary │ │ ├── Python-2.0 │ │ ├── QPL-1.0 │ │ ├── RHeCos-1 │ │ ├── RHeCos-1.1 │ │ ├── RPL-1.5 │ │ ├── RPSL-1.0 │ │ ├── RSCPL │ │ ├── Ruby │ │ ├── SAX-PD │ │ ├── SGI-1 │ │ ├── SMAIL_GPL │ │ ├── SPL-1.0 │ │ ├── Simple-2.0 │ │ ├── Sleepycat │ │ ├── SugarCRM-1 │ │ ├── SugarCRM-1.1.3 │ │ ├── UCB │ │ ├── VSL-1.0 │ │ ├── W3C │ │ ├── WXwindows │ │ ├── Watcom-1.0 │ │ ├── XFree86-1.0 │ │ ├── XFree86-1.1 │ │ ├── XSL │ │ ├── Xnet │ │ ├── YPL-1.1 │ │ ├── ZPL-1.1 │ │ ├── ZPL-2.0 │ │ ├── ZPL-2.1 │ │ ├── Zimbra-1.3 │ │ ├── Zlib │ │ ├── bzip2 │ │ ├── eCos-2.0 │ │ ├── gSOAP-1 │ │ ├── gSOAP-1.3b │ │ ├── tcl │ │ └── unfs3 │ ├── deploydir_readme.txt │ ├── device_table-minimal.txt │ ├── ext-sdk-prepare.py │ ├── fs-perms.txt │ ├── toolchain-shar-extract.sh │ └── toolchain-shar-relocate.sh ├── lib │ ├── buildstats.py │ ├── oe │ │ ├── __init__.py │ │ ├── buildhistory_analysis.py │ │ ├── cachedpath.py │ │ ├── classextend.py │ │ ├── classutils.py │ │ ├── copy_buildsystem.py │ │ ├── data.py │ │ ├── distro_check.py │ │ ├── gpg_sign.py │ │ ├── license.py │ │ ├── lsb.py │ │ ├── maketype.py │ │ ├── manifest.py │ │ ├── package.py │ │ ├── package_manager.py │ │ ├── packagedata.py │ │ ├── packagegroup.py │ │ ├── patch.py │ │ ├── path.py │ │ ├── prservice.py │ │ ├── qa.py │ │ ├── recipeutils.py │ │ ├── rootfs.py │ │ ├── sdk.py │ │ ├── sstatesig.py │ │ ├── terminal.py │ │ ├── tests │ │ │ ├── __init__.py │ │ │ ├── test_elf.py │ │ │ ├── test_license.py │ │ │ ├── test_path.py │ │ │ ├── test_types.py │ │ │ └── test_utils.py │ │ ├── types.py │ │ └── utils.py │ └── oeqa │ │ ├── buildperf │ │ ├── __init__.py │ │ ├── base.py │ │ └── test_basic.py │ │ ├── controllers │ │ ├── __init__.py │ │ ├── masterimage.py │ │ └── testtargetloader.py │ │ ├── oetest.py │ │ ├── runexported.py │ │ ├── runtime │ │ ├── _ptest.py │ │ ├── _qemutiny.py │ │ ├── buildcvs.py │ │ ├── buildgalculator.py │ │ ├── buildiptables.py │ │ ├── connman.py │ │ ├── date.py │ │ ├── df.py │ │ ├── files │ │ │ ├── hellomod.c │ │ │ ├── hellomod_makefile │ │ │ ├── test.c │ │ │ ├── test.cpp │ │ │ ├── test.pl │ │ │ ├── test.py │ │ │ ├── testmakefile │ │ │ └── testsdkmakefile │ │ ├── gcc.py │ │ ├── kernelmodule.py │ │ ├── ldd.py │ │ ├── logrotate.py │ │ ├── multilib.py │ │ ├── pam.py │ │ ├── parselogs.py │ │ ├── perl.py │ │ ├── ping.py │ │ ├── python.py │ │ ├── rpm.py │ │ ├── scanelf.py │ │ ├── scp.py │ │ ├── skeletoninit.py │ │ ├── smart.py │ │ ├── ssh.py │ │ ├── syslog.py │ │ ├── systemd.py │ │ ├── x32lib.py │ │ └── xorg.py │ │ ├── sdk │ │ ├── __init__.py │ │ ├── buildcvs.py │ │ ├── buildgalculator.py │ │ ├── buildiptables.py │ │ ├── gcc.py │ │ ├── perl.py │ │ └── python.py │ │ ├── sdkext │ │ ├── __init__.py │ │ ├── devtool.py │ │ ├── files │ │ │ ├── myapp │ │ │ │ ├── Makefile │ │ │ │ └── myapp.c │ │ │ └── myapp_cmake │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── myapp.c │ │ └── sdk_update.py │ │ ├── selftest │ │ ├── __init__.py │ │ ├── _sstatetests_noauto.py │ │ ├── archiver.py │ │ ├── base.py │ │ ├── bblayers.py │ │ ├── bbtests.py │ │ ├── buildhistory.py │ │ ├── buildoptions.py │ │ ├── devtool.py │ │ ├── eSDK.py │ │ ├── imagefeatures.py │ │ ├── layerappend.py │ │ ├── liboe.py │ │ ├── lic-checksum.py │ │ ├── manifest.py │ │ ├── oescripts.py │ │ ├── pkgdata.py │ │ ├── prservice.py │ │ ├── recipetool.py │ │ ├── runtime-test.py │ │ ├── signing.py │ │ ├── sstate.py │ │ ├── sstatetests.py │ │ └── wic.py │ │ ├── targetcontrol.py │ │ └── utils │ │ ├── __init__.py │ │ ├── commands.py │ │ ├── decorators.py │ │ ├── dump.py │ │ ├── ftools.py │ │ ├── git.py │ │ ├── httpserver.py │ │ ├── logparser.py │ │ ├── network.py │ │ ├── package_manager.py │ │ ├── qemurunner.py │ │ ├── qemutinyrunner.py │ │ ├── sshcontrol.py │ │ ├── targetbuild.py │ │ └── testexport.py ├── recipes-bsp │ ├── acpid │ │ ├── acpid.inc │ │ ├── acpid │ │ │ ├── acpid.service │ │ │ └── init │ │ └── acpid_2.0.28.bb │ ├── alsa-state │ │ ├── alsa-state.bb │ │ └── alsa-state │ │ │ ├── alsa-state-init │ │ │ ├── asound.conf │ │ │ └── asound.state │ ├── apmd │ │ ├── apmd │ │ │ ├── apmd.service │ │ │ ├── apmd_proxy │ │ │ ├── apmd_proxy.conf │ │ │ ├── default │ │ │ ├── init │ │ │ ├── legacy.patch │ │ │ ├── libtool.patch │ │ │ ├── linkage.patch │ │ │ ├── unlinux.patch │ │ │ └── wexitcode.patch │ │ └── apmd_3.2.2-15.bb │ ├── eee-acpi-scripts │ │ ├── eee-acpi-scripts_git.bb │ │ └── files │ │ │ ├── policy-funcs │ │ │ ├── powerbtn.patch │ │ │ └── remove-doc-check.patch │ ├── formfactor │ │ ├── files │ │ │ ├── config │ │ │ ├── machconfig │ │ │ ├── qemuarm │ │ │ │ └── machconfig │ │ │ ├── qemuarmv6 │ │ │ │ └── machconfig │ │ │ ├── qemuarmv7 │ │ │ │ └── machconfig │ │ │ ├── qemumips │ │ │ │ └── machconfig │ │ │ ├── qemumips64 │ │ │ │ └── machconfig │ │ │ ├── qemuppc │ │ │ │ └── machconfig │ │ │ ├── qemux86-64 │ │ │ │ └── machconfig │ │ │ └── qemux86 │ │ │ │ └── machconfig │ │ └── formfactor_0.0.bb │ ├── gnu-efi │ │ ├── gnu-efi │ │ │ ├── aarch64-initplat.c-fix-const-qualifier.patch │ │ │ ├── gcc46-compatibility.patch │ │ │ ├── lib-Makefile-fix-parallel-issue.patch │ │ │ └── parallel-make-archives.patch │ │ └── gnu-efi_3.0.4.bb │ ├── grub │ │ ├── files │ │ │ ├── 0001-Fix-CVE-2015-8370-Grub2-user-pass-vulnerability.patch │ │ │ ├── 0001-Remove-direct-_llseek-code-and-require-long-filesyst.patch │ │ │ ├── 0001-Unset-need_charset_alias-when-building-for-musl.patch │ │ │ ├── 0001-grub-core-gettext-gettext.c-main_context-secondary_c.patch │ │ │ ├── 0001-parse_dhcp_vendor-Add-missing-const-qualifiers.patch │ │ │ ├── cfg │ │ │ ├── check-if-liblzma-is-disabled.patch │ │ │ ├── fix-endianness-problem.patch │ │ │ ├── fix-issue-with-flex-2.5.37.patch │ │ │ ├── fix-texinfo.patch │ │ │ ├── grub-2.00-add-oe-kernel.patch │ │ │ ├── grub-2.00-fix-enable_execute_stack-check.patch │ │ │ ├── grub-2.00-fpmath-sse-387-fix.patch │ │ │ ├── grub-efi-allow-a-compilation-without-mcmodel-large.patch │ │ │ ├── grub-efi-fix-with-glibc-2.20.patch │ │ │ ├── grub-install.in.patch │ │ │ ├── grub-module-explicitly-keeps-symbole-.module_license.patch │ │ │ ├── grub-no-unused-result.patch │ │ │ ├── grub2-fix-initrd-size-bug.patch │ │ │ ├── grub2-remove-sparc64-setup-from-x86-builds.patch │ │ │ └── remove-gets.patch │ │ ├── grub-0.97 │ │ │ ├── autohell.patch │ │ │ ├── grub-support-256byte-inode.patch │ │ │ ├── grub_fix_for_automake-1.12.patch │ │ │ ├── no-reorder-functions.patch │ │ │ └── objcopy-absolute.patch │ │ ├── grub-efi_2.00.bb │ │ ├── grub-git │ │ │ ├── 0001-Disable-mfpmath-sse-as-well-when-SSE-is-disabled.patch │ │ │ └── 0001-grub.d-10_linux.in-add-oe-s-kernel-name.patch │ │ ├── grub │ │ │ └── autogen.sh-exclude-pc.patch │ │ ├── grub2.inc │ │ ├── grub_0.97.bb │ │ ├── grub_2.00.bb │ │ └── grub_git.bb │ ├── gummiboot │ │ ├── gummiboot │ │ │ ├── 0001-console-Fix-C-syntax-errors-for-function-declaration.patch │ │ │ └── fix-objcopy.patch │ │ └── gummiboot_git.bb │ ├── hostap │ │ ├── files │ │ │ ├── COPYING.patch │ │ │ ├── hostap-fw-load.patch │ │ │ ├── hostap_cs.conf │ │ │ ├── hostap_cs.conf-upstream │ │ │ └── hostap_cs.modalias │ │ ├── hostap-conf_1.0.bb │ │ ├── hostap-utils-0.4.7 │ │ │ ├── 0001-Define-_u32-__s32-__u16-__s16-__u8-in-terms-of-c99-t.patch │ │ │ └── ldflags.patch │ │ ├── hostap-utils.inc │ │ └── hostap-utils_0.4.7.bb │ ├── keymaps │ │ ├── files │ │ │ ├── GPLv2.patch │ │ │ └── keymap.sh │ │ └── keymaps_1.0.bb │ ├── libacpi │ │ ├── files │ │ │ ├── ldflags.patch │ │ │ ├── libacpi_fix_for_x32.patch │ │ │ ├── makefile-fix.patch │ │ │ └── use_correct_strip_in_cross_environment.patch │ │ └── libacpi_0.2.bb │ ├── lrzsz │ │ ├── lrzsz-0.12.20 │ │ │ ├── acdefine.patch │ │ │ ├── autotools.patch │ │ │ ├── gettext.patch │ │ │ ├── lrzsz-check-locale.h.patch │ │ │ ├── lrzsz_fix_for_automake-1.12.patch │ │ │ └── makefile.patch │ │ └── lrzsz_0.12.20.bb │ ├── pciutils │ │ ├── pciutils │ │ │ ├── configure.patch │ │ │ ├── guess-fix.patch │ │ │ └── makefile.patch │ │ └── pciutils_3.5.1.bb │ ├── pcmciautils │ │ ├── pcmciautils-018 │ │ │ ├── lex_sys_types.patch │ │ │ ├── makefile_fix.patch │ │ │ └── makefile_race.patch │ │ ├── pcmciautils.inc │ │ └── pcmciautils_018.bb │ ├── pm-utils │ │ └── pm-utils_1.4.1.bb │ ├── setserial │ │ ├── setserial │ │ │ ├── add_stdlib.patch │ │ │ └── ldflags.patch │ │ └── setserial_2.17.bb │ ├── systemd-boot │ │ ├── files │ │ │ └── 0001-use-lnr-wrapper-instead-of-looking-for-relative-opti.patch │ │ └── systemd-boot.bb │ ├── u-boot │ │ ├── u-boot-common_2016.03.inc │ │ ├── u-boot-fw-utils_2016.03.bb │ │ ├── u-boot-mkimage_2016.03.bb │ │ ├── u-boot.inc │ │ └── u-boot_2016.03.bb │ ├── usbinit │ │ ├── usbinit.bb │ │ └── usbinit │ │ │ ├── COPYING.GPL │ │ │ └── usb-gether │ ├── usbutils │ │ ├── usbutils │ │ │ ├── Fix-NULL-pointer-crash.patch │ │ │ ├── iconv.patch │ │ │ └── usb-devices-avoid-dependency-on-bash.patch │ │ └── usbutils_008.bb │ └── v86d │ │ ├── v86d │ │ ├── Update-x86emu-from-X.org.patch │ │ ├── aarch64-host.patch │ │ ├── ar-from-env.patch │ │ ├── fbsetup │ │ └── uvesafb.conf │ │ └── v86d_0.1.10.bb ├── recipes-connectivity │ ├── avahi │ │ ├── avahi-ui_0.6.32.bb │ │ ├── avahi.inc │ │ ├── avahi_0.6.32.bb │ │ └── files │ │ │ ├── 0001-configure.ac-install-GtkBuilder-interface-files-for-.patch │ │ │ ├── 00avahi-autoipd │ │ │ ├── 99avahi-autoipd │ │ │ ├── avahi-fix-resource-unavaiable.patch │ │ │ └── initscript.patch │ ├── bind │ │ ├── bind │ │ │ ├── 0001-build-use-pkg-config-to-find-libxml2.patch │ │ │ ├── 0001-gen.c-extend-DIRNAMESIZE-from-256-to-512.patch │ │ │ ├── 0001-lib-dns-gen.c-fix-too-long-error.patch │ │ │ ├── CVE-2016-1285.patch │ │ │ ├── CVE-2016-1286_1.patch │ │ │ ├── CVE-2016-1286_2.patch │ │ │ ├── CVE-2016-2088.patch │ │ │ ├── CVE-2016-2775.patch │ │ │ ├── CVE-2016-2776.patch │ │ │ ├── bind-confgen-build-unix.o-once.patch │ │ │ ├── bind-ensure-searching-for-json-headers-searches-sysr.patch │ │ │ ├── bind9 │ │ │ ├── conf.patch │ │ │ ├── dont-test-on-host.patch │ │ │ ├── generate-rndc-key.sh │ │ │ ├── init.d-add-support-for-read-only-rootfs.patch │ │ │ ├── make-etc-initd-bind-stop-work.patch │ │ │ ├── mips1-not-support-opcode.diff │ │ │ └── named.service │ │ └── bind_9.10.3-P3.bb │ ├── bluez5 │ │ ├── bluez5.inc │ │ ├── bluez5 │ │ │ ├── 0001-Allow-using-obexd-without-systemd-in-the-user-sessio.patch │ │ │ ├── 0001-tests-add-a-target-for-building-tests-without-runnin.patch │ │ │ ├── init │ │ │ ├── out-of-tree.patch │ │ │ └── run-ptest │ │ └── bluez5_5.43.bb │ ├── connman │ │ ├── connman-conf.bb │ │ ├── connman-conf │ │ │ └── qemuall │ │ │ │ ├── wired-connection.service │ │ │ │ ├── wired-setup │ │ │ │ └── wired.config │ │ ├── connman-gnome │ │ │ ├── 0001-Port-to-Gtk3.patch │ │ │ ├── 0001-Removed-icon-from-connman-gnome-about-applet.patch │ │ │ ├── connman-gnome-fix-dbus-interface-name.patch │ │ │ ├── images │ │ │ │ ├── connman-signal-01.png │ │ │ │ ├── connman-signal-02.png │ │ │ │ ├── connman-signal-03.png │ │ │ │ ├── connman-signal-04.png │ │ │ │ └── connman-signal-05.png │ │ │ └── null_check_for_ipv4_config.patch │ │ ├── connman-gnome_0.7.bb │ │ ├── connman.inc │ │ ├── connman │ │ │ ├── 0001-plugin.h-Change-visibility-to-default-for-debug-symb.patch │ │ │ ├── 0002-resolve-musl-does-not-implement-res_ninit.patch │ │ │ ├── 0003-stats-Fix-bad-file-descriptor-initialisation.patch │ │ │ ├── connman │ │ │ ├── includes.patch │ │ │ └── no-version-scripts.patch │ │ └── connman_1.33.bb │ ├── dhcp │ │ ├── dhcp.inc │ │ ├── dhcp │ │ │ ├── 0001-site.h-enable-gentle-shutdown.patch │ │ │ ├── define-macro-_PATH_DHCPD_CONF-and-_PATH_DHCLIENT_CON.patch │ │ │ ├── dhclient-script-drop-resolv.conf.dhclient.patch │ │ │ ├── dhcp-3.0.3-dhclient-dbus.patch │ │ │ ├── fixsepbuild.patch │ │ │ ├── libxml2-configure-argument.patch │ │ │ ├── link-with-lcrypto.patch │ │ │ ├── remove-dhclient-script-bash-dependency.patch │ │ │ ├── replace-ifconfig-route.patch │ │ │ ├── search-for-libxml2.patch │ │ │ └── tweak-to-support-external-bind.patch │ │ ├── dhcp_4.3.4.bb │ │ └── files │ │ │ ├── default-relay │ │ │ ├── default-server │ │ │ ├── dhclient.conf │ │ │ ├── dhcpd.conf │ │ │ ├── dhcpd.service │ │ │ ├── dhcpd6.service │ │ │ ├── dhcrelay.service │ │ │ ├── init-relay │ │ │ └── init-server │ ├── iproute2 │ │ ├── iproute2.inc │ │ ├── iproute2 │ │ │ ├── 0001-iproute2-de-bash-scripts.patch │ │ │ ├── configure-cross.patch │ │ │ └── iproute2-4.3.0-musl.patch │ │ └── iproute2_4.7.0.bb │ ├── irda-utils │ │ ├── irda-utils-0.9.18 │ │ │ ├── init │ │ │ ├── ldflags.patch │ │ │ └── musl.patch │ │ └── irda-utils_0.9.18.bb │ ├── iw │ │ ├── iw │ │ │ ├── 0001-iw-version.sh-don-t-use-git-describe-for-versioning.patch │ │ │ └── separate-objdir.patch │ │ └── iw_4.9.bb │ ├── libnss-mdns │ │ ├── libnss-mdns │ │ │ └── 0001-check-for-nss.h.patch │ │ └── libnss-mdns_0.10.bb │ ├── libpcap │ │ ├── libpcap.inc │ │ ├── libpcap │ │ │ ├── 0001-Fix-compiler_state_t.ai-usage-when-INET6-is-not-defi.patch │ │ │ ├── 0002-Add-missing-compiler_state_t-parameter.patch │ │ │ └── libpcap-pkgconfig-support.patch │ │ └── libpcap_1.8.1.bb │ ├── mobile-broadband-provider-info │ │ └── mobile-broadband-provider-info_git.bb │ ├── neard │ │ ├── neard │ │ │ ├── Makefile.am-do-not-ship-version.h.patch │ │ │ ├── Makefile.am-fix-parallel-issue.patch │ │ │ └── neard.in │ │ └── neard_0.16.bb │ ├── nfs-utils │ │ ├── files │ │ │ ├── bugfix-adjust-statd-service-name.patch │ │ │ └── nfs-utils-debianize-start-statd.patch │ │ ├── libnfsidmap │ │ │ ├── 0001-include-sys-types.h-for-getting-u_-typedefs.patch │ │ │ ├── Set_nobody_user_group.patch │ │ │ └── fix-ac-prereq.patch │ │ ├── libnfsidmap_0.25.bb │ │ ├── nfs-utils │ │ │ ├── 0001-configure-Allow-to-explicitly-disable-nfsidmap.patch │ │ │ ├── nfs-mountd.service │ │ │ ├── nfs-server.service │ │ │ ├── nfs-statd.service │ │ │ ├── nfs-utils-1.2.3-sm-notify-res_init.patch │ │ │ ├── nfs-utils-Do-not-pass-CFLAGS-to-gcc-while-building.patch │ │ │ ├── nfs-utils.conf │ │ │ ├── nfscommon │ │ │ ├── nfsserver │ │ │ └── proc-fs-nfsd.mount │ │ └── nfs-utils_1.3.4.bb │ ├── ofono │ │ ├── ofono.inc │ │ ├── ofono │ │ │ └── ofono │ │ ├── ofono_1.19.bb │ │ └── ofono_git.bb │ ├── openssh │ │ ├── openssh │ │ │ ├── add-test-support-for-busybox.patch │ │ │ ├── fix-CVE-2016-8858.patch │ │ │ ├── fix-potential-signed-overflow-in-pointer-arithmatic.patch │ │ │ ├── init │ │ │ ├── openssh-7.1p1-conditional-compile-des-in-cipher.patch │ │ │ ├── openssh-7.1p1-conditional-compile-des-in-pkcs11.patch │ │ │ ├── run-ptest │ │ │ ├── ssh_config │ │ │ ├── sshd │ │ │ ├── sshd.socket │ │ │ ├── sshd@.service │ │ │ ├── sshd_config │ │ │ ├── sshdgenkeys.service │ │ │ └── volatiles.99_sshd │ │ └── openssh_7.3p1.bb │ ├── openssl │ │ ├── openssl.inc │ │ ├── openssl │ │ │ ├── CVE-2016-7055.patch │ │ │ ├── Makefiles-ptest.patch │ │ │ ├── Use-SHA256-not-MD5-as-default-digest.patch │ │ │ ├── configure-musl-target.patch │ │ │ ├── configure-targets.patch │ │ │ ├── debian │ │ │ │ ├── c_rehash-compat.patch │ │ │ │ ├── ca.patch │ │ │ │ ├── debian-targets.patch │ │ │ │ ├── man-dir.patch │ │ │ │ ├── man-section.patch │ │ │ │ ├── no-rpath.patch │ │ │ │ ├── no-symbolic.patch │ │ │ │ ├── pic.patch │ │ │ │ └── version-script.patch │ │ │ ├── debian1.0.2 │ │ │ │ ├── block_digicert_malaysia.patch │ │ │ │ ├── block_diginotar.patch │ │ │ │ └── version-script.patch │ │ │ ├── engines-install-in-libdir-ssl.patch │ │ │ ├── find.pl │ │ │ ├── fix-cipher-des-ede3-cfb1.patch │ │ │ ├── oe-ldflags.patch │ │ │ ├── openssl-1.0.2a-x32-asm.patch │ │ │ ├── openssl-avoid-NULL-pointer-dereference-in-EVP_DigestInit_ex.patch │ │ │ ├── openssl-c_rehash.sh │ │ │ ├── openssl-fix-des.pod-error.patch │ │ │ ├── openssl-util-perlpath.pl-cwd.patch │ │ │ ├── openssl_fix_for_x32.patch │ │ │ ├── parallel.patch │ │ │ ├── ptest-deps.patch │ │ │ ├── ptest_makefile_deps.patch │ │ │ ├── run-ptest │ │ │ └── shared-libs.patch │ │ └── openssl_1.0.2j.bb │ ├── portmap │ │ ├── portmap.inc │ │ ├── portmap │ │ │ ├── destdir-no-strip.patch │ │ │ ├── portmap.init │ │ │ ├── portmap.service │ │ │ └── tcpd-config.patch │ │ └── portmap_6.0.bb │ ├── ppp-dialin │ │ ├── files │ │ │ ├── host-peer │ │ │ └── ppp-dialin │ │ └── ppp-dialin_0.1.bb │ ├── ppp │ │ ├── ppp │ │ │ ├── 0001-Fix-build-with-musl.patch │ │ │ ├── 0001-ppp-Fix-compilation-errors-in-Makefile.patch │ │ │ ├── 08setupdns │ │ │ ├── 92removedns │ │ │ ├── cifdefroute.patch │ │ │ ├── copts.patch │ │ │ ├── fix-CVE-2015-3310.patch │ │ │ ├── init │ │ │ ├── ip-down │ │ │ ├── ip-up │ │ │ ├── makefile-remove-hard-usr-reference.patch │ │ │ ├── makefile.patch │ │ │ ├── pap │ │ │ ├── poff │ │ │ ├── pon │ │ │ ├── ppp-fix-building-with-linux-4.8.patch │ │ │ ├── ppp@.service │ │ │ ├── ppp_on_boot │ │ │ ├── pppd-resolv-varrun.patch │ │ │ └── provider │ │ └── ppp_2.4.7.bb │ ├── resolvconf │ │ ├── resolvconf │ │ │ ├── 99_resolvconf │ │ │ └── fix-path-for-busybox.patch │ │ └── resolvconf_1.79.bb │ ├── socat │ │ ├── socat │ │ │ ├── 0001-Access-c_ispeed-and-c_ospeed-via-APIs.patch │ │ │ ├── 0001-define-NETDB_INTERNAL-to-1-if-not-available.patch │ │ │ └── Makefile.in-fix-for-parallel-build.patch │ │ └── socat_1.7.3.1.bb │ ├── wireless-tools │ │ ├── wireless-tools │ │ │ ├── avoid_strip.patch │ │ │ ├── ldflags.patch │ │ │ ├── man.patch │ │ │ └── remove.ldconfig.call.patch │ │ └── wireless-tools_30.pre9.bb │ └── wpa-supplicant │ │ ├── wpa-supplicant │ │ ├── 0001-Reject-psk-parameter-set-with-invalid-passphrase-cha.patch │ │ ├── 0001-WPS-Reject-a-Credential-with-invalid-passphrase.patch │ │ ├── 0002-Reject-SET_CRED-commands-with-newline-characters-in-.patch │ │ ├── 0002-Remove-newlines-from-wpa_supplicant-config-network-o.patch │ │ ├── 0003-Reject-SET-commands-with-newline-characters-in-the-s.patch │ │ ├── 99_wpa_supplicant │ │ ├── defconfig │ │ ├── wpa-supplicant.sh │ │ ├── wpa_supplicant.conf │ │ └── wpa_supplicant.conf-sane │ │ └── wpa-supplicant_2.5.bb ├── recipes-core │ ├── base-files │ │ ├── base-files │ │ │ ├── filesystems │ │ │ ├── fstab │ │ │ ├── host.conf │ │ │ ├── issue │ │ │ ├── issue.net │ │ │ ├── licenses │ │ │ │ └── GPL-2 │ │ │ ├── motd │ │ │ ├── nsswitch.conf │ │ │ ├── profile │ │ │ ├── rotation │ │ │ ├── share │ │ │ │ ├── dot.bashrc │ │ │ │ └── dot.profile │ │ │ ├── shells │ │ │ └── usbd │ │ └── base-files_3.0.14.bb │ ├── base-passwd │ │ ├── base-passwd │ │ │ ├── add_shutdown.patch │ │ │ ├── disable-docs.patch │ │ │ ├── input.patch │ │ │ ├── nobash.patch │ │ │ └── noshadow.patch │ │ └── base-passwd_3.5.29.bb │ ├── bsd-headers │ │ ├── bsd-headers.bb │ │ └── bsd-headers │ │ │ ├── sys-cdefs.h │ │ │ ├── sys-queue.h │ │ │ └── sys-tree.h │ ├── busybox │ │ ├── busybox.inc │ │ ├── busybox │ │ │ ├── 0001-Use-CC-when-linking-instead-of-LD-and-use-CFLAGS-and.patch │ │ │ ├── 0001-flock-update-the-behaviour-of-c-parameter-to-match-u.patch │ │ │ ├── 0001-sed-fix-sed-n-flushes-pattern-space-terminates-early.patch │ │ │ ├── CVE-2016-2147.patch │ │ │ ├── CVE-2016-2147_2.patch │ │ │ ├── CVE-2016-2148.patch │ │ │ ├── busybox-1.24.1-truncate-open-mode.patch │ │ │ ├── busybox-1.24.1-unzip-regression.patch │ │ │ ├── busybox-1.24.1-unzip.patch │ │ │ ├── busybox-cross-menuconfig.patch │ │ │ ├── busybox-kbuild-race-fix-commit-d8e61bb.patch │ │ │ ├── busybox-udhcpc-no_deconfig.patch │ │ │ ├── commit-applet_tables-fix-commit-0dddbc1.patch │ │ │ ├── defconfig │ │ │ ├── fail_on_no_media.patch │ │ │ ├── getopts.cfg │ │ │ ├── init.cfg │ │ │ ├── ip_fix_problem_on_mips64_n64_big_endian_musl_systems.patch │ │ │ ├── login-utilities.cfg │ │ │ ├── makefile-fix-backport.patch │ │ │ ├── makefile-libbb-race.patch │ │ │ ├── mdev.cfg │ │ │ ├── mount-via-label.cfg │ │ │ ├── musl.cfg │ │ │ ├── recognize_connmand.patch │ │ │ ├── resize.cfg │ │ │ ├── sha1sum.cfg │ │ │ └── sha256sum.cfg │ │ ├── busybox_1.24.1.bb │ │ ├── busybox_git.bb │ │ └── files │ │ │ ├── busybox-cron │ │ │ ├── busybox-httpd │ │ │ ├── busybox-klogd.service.in │ │ │ ├── busybox-syslog.default │ │ │ ├── busybox-syslog.service.in │ │ │ ├── busybox-udhcpd │ │ │ ├── default.script │ │ │ ├── find-touchscreen.sh │ │ │ ├── hwclock.sh │ │ │ ├── inetd │ │ │ ├── inetd.conf │ │ │ ├── inittab │ │ │ ├── mdev │ │ │ ├── mdev-mount.sh │ │ │ ├── mdev.conf │ │ │ ├── mount.busybox │ │ │ ├── rcK │ │ │ ├── rcS │ │ │ ├── run-ptest │ │ │ ├── runlevel │ │ │ ├── simple.script │ │ │ ├── syslog │ │ │ ├── syslog-startup.conf │ │ │ ├── syslog.conf │ │ │ └── umount.busybox │ ├── console-tools │ │ ├── console-tools-0.3.2 │ │ │ ├── 0001-Cover-the-else-with-__GLIBC__.patch │ │ │ ├── 0001-kbdtools-Include-sys-types.h-for-u_char-and-u_short-.patch │ │ │ ├── Makevars │ │ │ ├── codepage.patch │ │ │ ├── compile.patch │ │ │ ├── configure.patch │ │ │ ├── fix-libconsole-linking.patch │ │ │ ├── kbdrate.patch │ │ │ ├── lcmessage.m4 │ │ │ ├── no-dep-on-libfl.patch │ │ │ ├── nodocs.patch │ │ │ └── uclibc-fileno.patch │ │ └── console-tools_0.3.2.bb │ ├── coreutils │ │ ├── coreutils-6.9 │ │ │ ├── coreutils-6.9-cp-i-u.patch │ │ │ ├── coreutils-fix-install.patch │ │ │ ├── coreutils-fix-texinfo.patch │ │ │ ├── coreutils-i18n.patch │ │ │ ├── coreutils-ls-x.patch │ │ │ ├── coreutils-overflow.patch │ │ │ ├── coreutils_fix_for_automake-1.12.patch │ │ │ ├── fix_for_manpage_building.patch │ │ │ ├── futimens.patch │ │ │ ├── gnulib_m4.patch │ │ │ ├── loadavg.patch │ │ │ └── man-touch.patch │ │ ├── coreutils-8.25 │ │ │ ├── 0001-Unset-need_charset_alias-when-building-for-musl.patch │ │ │ ├── 0001-uname-report-processor-and-hardware-correctly.patch │ │ │ ├── disable-ls-output-quoting.patch │ │ │ ├── fix-selinux-flask.patch │ │ │ ├── man-decouple-manpages-from-build.patch │ │ │ └── remove-usr-local-lib-from-m4.patch │ │ ├── coreutils_6.9.bb │ │ └── coreutils_8.25.bb │ ├── dbus-wait │ │ └── dbus-wait_git.bb │ ├── dbus │ │ ├── dbus-glib.inc │ │ ├── dbus-glib │ │ │ ├── no-examples.patch │ │ │ └── test-install-makefile.patch │ │ ├── dbus-glib_0.106.bb │ │ ├── dbus-test_1.10.10.bb │ │ ├── dbus │ │ │ ├── 0001-configure.ac-explicitely-check-stdint.h.patch │ │ │ ├── clear-guid_from_server-if-send_negotiate_unix_f.patch │ │ │ ├── dbus-1.init │ │ │ ├── os-test.patch │ │ │ ├── python-config.patch │ │ │ ├── run-ptest │ │ │ └── tmpdir.patch │ │ └── dbus_1.10.10.bb │ ├── dropbear │ │ ├── dropbear.inc │ │ ├── dropbear │ │ │ ├── 0001-urandom-xauth-changes-to-options.h.patch │ │ │ ├── 0003-configure.patch │ │ │ ├── 0004-fix-2kb-keys.patch │ │ │ ├── 0005-dropbear-enable-pam.patch │ │ │ ├── 0006-dropbear-configuration-file.patch │ │ │ ├── 0007-dropbear-fix-for-x32-abi.patch │ │ │ ├── dropbear │ │ │ ├── dropbear.socket │ │ │ ├── dropbear@.service │ │ │ ├── dropbearkey.service │ │ │ ├── fix-libtomcrypt-libtommath-ordering.patch │ │ │ ├── init │ │ │ └── support-out-of-tree-builds.patch │ │ └── dropbear_2016.74.bb │ ├── expat │ │ ├── expat.inc │ │ ├── expat │ │ │ └── autotools.patch │ │ └── expat_2.2.0.bb │ ├── fts │ │ ├── fts.bb │ │ └── fts │ │ │ ├── fts-header-correctness.patch │ │ │ ├── fts-uclibc.patch │ │ │ ├── gcc5.patch │ │ │ ├── remove_cdefs.patch │ │ │ └── stdint.patch │ ├── gettext │ │ ├── gettext-0.16.1 │ │ │ ├── disable_java.patch │ │ │ ├── fix_aclocal_version.patch │ │ │ ├── fix_gnu_source_circular.patch │ │ │ ├── gettext-autoconf-lib-link-no-L.patch │ │ │ ├── gettext-vpath.patch │ │ │ ├── hardcode_macro_version.patch │ │ │ └── linklib_from_0.17.patch │ │ ├── gettext-0.19.8.1 │ │ │ ├── add-with-bisonlocaledir.patch │ │ │ └── parallel.patch │ │ ├── gettext-minimal-0.19.8.1 │ │ │ ├── 0001-PATCH-Disable-the-test-to-convert-euc-jp.patch │ │ │ ├── COPYING │ │ │ ├── Makefile.in.in │ │ │ ├── aclocal.tgz │ │ │ ├── config.rpath │ │ │ └── remove-potcdate.sin │ │ ├── gettext-minimal-native_0.19.8.1.bb │ │ ├── gettext_0.16.1.bb │ │ └── gettext_0.19.8.1.bb │ ├── glib-2.0 │ │ ├── glib-2.0 │ │ │ ├── 0001-Do-not-ignore-return-value-of-write.patch │ │ │ ├── 0001-Install-gio-querymodules-as-libexec_PROGRAM.patch │ │ │ ├── 0001-Remove-the-warning-about-deprecated-paths-in-schemas.patch │ │ │ ├── 0001-Test-for-pthread_getname_np-before-using-it.patch │ │ │ ├── Enable-more-tests-while-cross-compiling.patch │ │ │ ├── allow-run-media-sdX-drive-mount-if-username-root.patch │ │ │ ├── configure-libtool.patch │ │ │ ├── fix-conflicting-rand.patch │ │ │ ├── glib-gettextize-dir.patch │ │ │ ├── ptest-paths.patch │ │ │ ├── relocate-modules.patch │ │ │ ├── run-ptest │ │ │ └── uclibc_musl_translation.patch │ │ ├── glib-2.0_2.50.1.bb │ │ └── glib.inc │ ├── glib-networking │ │ └── glib-networking_2.50.0.bb │ ├── glibc │ │ ├── cross-localedef-native_2.24.bb │ │ ├── glibc-collateral.inc │ │ ├── glibc-common.inc │ │ ├── glibc-initial.inc │ │ ├── glibc-initial_2.24.bb │ │ ├── glibc-ld.inc │ │ ├── glibc-locale.inc │ │ ├── glibc-locale_2.24.bb │ │ ├── glibc-mtrace.inc │ │ ├── glibc-mtrace_2.24.bb │ │ ├── glibc-package.inc │ │ ├── glibc-scripts.inc │ │ ├── glibc-scripts_2.24.bb │ │ ├── glibc-testing.inc │ │ ├── glibc.inc │ │ ├── glibc │ │ │ ├── 0001-locale-fix-hard-coded-reference-to-gcc-E.patch │ │ │ ├── 0001-nativesdk-glibc-Look-for-host-system-ld.so.cache-as-.patch │ │ │ ├── 0002-nativesdk-glibc-Fix-buffer-overrun-with-a-relocated-.patch │ │ │ ├── 0003-nativesdk-glibc-Raise-the-size-of-arrays-containing-.patch │ │ │ ├── 0004-nativesdk-glibc-Allow-64-bit-atomics-for-x86.patch │ │ │ ├── 0005-fsl-e500-e5500-e6500-603e-fsqrt-implementation.patch │ │ │ ├── 0006-readlib-Add-OECORE_KNOWN_INTERPRETER_NAMES-to-known-.patch │ │ │ ├── 0007-ppc-sqrt-Fix-undefined-reference-to-__sqrt_finite.patch │ │ │ ├── 0008-__ieee754_sqrt-f-are-now-inline-functions-and-call-o.patch │ │ │ ├── 0009-Quote-from-bug-1443-which-explains-what-the-patch-do.patch │ │ │ ├── 0010-eglibc-run-libm-err-tab.pl-with-specific-dirs-in-S.patch │ │ │ ├── 0011-__ieee754_sqrt-f-are-now-inline-functions-and-call-o.patch │ │ │ ├── 0012-Make-ld-version-output-matching-grok-gold-s-output.patch │ │ │ ├── 0013-sysdeps-gnu-configure.ac-handle-correctly-libc_cv_ro.patch │ │ │ ├── 0014-Add-unused-attribute.patch │ │ │ ├── 0015-yes-within-the-path-sets-wrong-config-variables.patch │ │ │ ├── 0016-timezone-re-written-tzselect-as-posix-sh.patch │ │ │ ├── 0017-Remove-bash-dependency-for-nscd-init-script.patch │ │ │ ├── 0018-eglibc-Cross-building-and-testing-instructions.patch │ │ │ ├── 0019-eglibc-Help-bootstrap-cross-toolchain.patch │ │ │ ├── 0020-eglibc-cherry-picked-from.patch │ │ │ ├── 0021-eglibc-Clear-cache-lines-on-ppc8xx.patch │ │ │ ├── 0022-eglibc-Resolve-__fpscr_values-on-SH4.patch │ │ │ ├── 0023-eglibc-Install-PIC-archives.patch │ │ │ ├── 0024-eglibc-Forward-port-cross-locale-generation-support.patch │ │ │ ├── 0025-Define-DUMMY_LOCALE_T-if-not-defined.patch │ │ │ ├── 0026-build_local_scope.patch │ │ │ ├── 0027-arm-mark-__startcontext-as-.cantunwind-bug-20435.patch │ │ │ ├── etc │ │ │ │ └── ld.so.conf │ │ │ └── generate-supported.mk │ │ ├── glibc_2.24.bb │ │ ├── ldconfig-native-2.12.1 │ │ │ ├── 32and64bit.patch │ │ │ ├── README │ │ │ ├── add-64-bit-flag-for-ELF64-entries.patch │ │ │ ├── endian-ness_handling.patch │ │ │ ├── endian-ness_handling_fix.patch │ │ │ ├── endianess-header.patch │ │ │ ├── flag_fix.patch │ │ │ ├── ldconfig-default-to-all-multilib-dirs.patch │ │ │ ├── ldconfig-native-2.12.1.tar.bz2 │ │ │ ├── ldconfig.patch │ │ │ └── ldconfig_aux-cache_path_fix.patch │ │ ├── ldconfig-native_2.12.1.bb │ │ └── site_config │ │ │ ├── funcs │ │ │ ├── headers │ │ │ └── types │ ├── ifupdown │ │ ├── files │ │ │ ├── 99_network │ │ │ ├── defn2-c-man-don-t-rely-on-dpkg-architecture-to-set-a.patch │ │ │ └── inet-6-.defn-fix-inverted-checks-for-loopback.patch │ │ └── ifupdown_0.8.2.bb │ ├── images │ │ ├── build-appliance-image │ │ │ ├── README_VirtualBox_Guest_Additions.txt │ │ │ ├── Yocto_Build_Appliance.vmx │ │ │ └── Yocto_Build_Appliance.vmxf │ │ ├── build-appliance-image_15.0.0.bb │ │ ├── core-image-base.bb │ │ ├── core-image-minimal-dev.bb │ │ ├── core-image-minimal-initramfs.bb │ │ ├── core-image-minimal-mtdutils.bb │ │ └── core-image-minimal.bb │ ├── init-ifupdown │ │ ├── init-ifupdown-1.0 │ │ │ ├── copyright │ │ │ ├── init │ │ │ ├── interfaces │ │ │ ├── nfsroot │ │ │ ├── qemuarm │ │ │ │ └── interfaces │ │ │ ├── qemuarm64 │ │ │ │ └── interfaces │ │ │ ├── qemuarmv6 │ │ │ │ └── interfaces │ │ │ ├── qemuarmv7 │ │ │ │ └── interfaces │ │ │ ├── qemumips │ │ │ │ └── interfaces │ │ │ ├── qemumips64 │ │ │ │ └── interfaces │ │ │ ├── qemuppc │ │ │ │ └── interfaces │ │ │ ├── qemush4 │ │ │ │ └── interfaces │ │ │ ├── qemux86-64 │ │ │ │ └── interfaces │ │ │ └── qemux86 │ │ │ │ └── interfaces │ │ └── init-ifupdown_1.0.bb │ ├── initrdscripts │ │ ├── files │ │ │ ├── init-boot.sh │ │ │ ├── init-install-efi-testfs.sh │ │ │ ├── init-install-efi.sh │ │ │ ├── init-install-testfs.sh │ │ │ ├── init-install.sh │ │ │ └── init-live.sh │ │ ├── initramfs-boot_1.0.bb │ │ ├── initramfs-framework │ │ │ ├── debug │ │ │ ├── e2fs │ │ │ ├── finish │ │ │ ├── init │ │ │ ├── mdev │ │ │ ├── rootfs │ │ │ └── udev │ │ ├── initramfs-framework_1.0.bb │ │ ├── initramfs-live-boot_1.0.bb │ │ ├── initramfs-live-install-efi-testfs_1.0.bb │ │ ├── initramfs-live-install-efi_1.0.bb │ │ ├── initramfs-live-install-testfs_1.0.bb │ │ └── initramfs-live-install_1.0.bb │ ├── initscripts │ │ ├── initscripts-1.0 │ │ │ ├── GPLv2.patch │ │ │ ├── arm │ │ │ │ └── alignment.sh │ │ │ ├── banner.sh │ │ │ ├── bootmisc.sh │ │ │ ├── checkfs.sh │ │ │ ├── checkroot.sh │ │ │ ├── devpts │ │ │ ├── devpts.sh │ │ │ ├── dmesg.sh │ │ │ ├── functions │ │ │ ├── halt │ │ │ ├── hostname.sh │ │ │ ├── logrotate-dmesg.conf │ │ │ ├── mountall.sh │ │ │ ├── mountnfs.sh │ │ │ ├── populate-volatile.sh │ │ │ ├── read-only-rootfs-hook.sh │ │ │ ├── reboot │ │ │ ├── rmnologin.sh │ │ │ ├── save-rtc.sh │ │ │ ├── sendsigs │ │ │ ├── single │ │ │ ├── sushell │ │ │ ├── sysfs.sh │ │ │ ├── umountfs │ │ │ ├── umountnfs.sh │ │ │ ├── urandom │ │ │ └── volatiles │ │ └── initscripts_1.0.bb │ ├── kbd │ │ ├── kbd │ │ │ ├── run-ptest │ │ │ └── set-proper-path-of-resources.patch │ │ └── kbd_2.0.3.bb │ ├── libcgroup │ │ ├── libcgroup │ │ │ └── musl-decls-compat.patch │ │ └── libcgroup_0.41.bb │ ├── libxml │ │ ├── libxml2 │ │ │ ├── ansidecl.patch │ │ │ ├── libxml-64bit.patch │ │ │ ├── libxml-m4-use-pkgconfig.patch │ │ │ ├── libxml2-CVE-2016-5131.patch │ │ │ ├── python-sitepackages-dir.patch │ │ │ ├── run-ptest │ │ │ └── runtest.patch │ │ └── libxml2_2.9.4.bb │ ├── meta │ │ ├── buildtools-tarball.bb │ │ ├── meta-environment-extsdk.bb │ │ ├── meta-environment.bb │ │ ├── meta-extsdk-toolchain.bb │ │ ├── meta-ide-support.bb │ │ ├── meta-toolchain.bb │ │ ├── meta-world-pkgdata.bb │ │ ├── nativesdk-buildtools-perl-dummy.bb │ │ ├── package-index.bb │ │ ├── signing-keys.bb │ │ ├── testexport-tarball.bb │ │ └── uninative-tarball.bb │ ├── musl │ │ ├── files │ │ │ └── 0001-Make-dynamic-linker-a-relative-symlink-to-libc.patch │ │ ├── musl.inc │ │ └── musl_git.bb │ ├── ncurses │ │ ├── files │ │ │ ├── config.cache │ │ │ └── tic-hang.patch │ │ ├── ncurses.inc │ │ ├── ncurses_6.0+20160625.bb │ │ └── site_config │ │ │ └── headers │ ├── netbase │ │ ├── netbase │ │ │ ├── hosts │ │ │ └── netbase-add-rpcbind-as-an-alias-to-sunrpc.patch │ │ └── netbase_5.3.bb │ ├── os-release │ │ └── os-release.bb │ ├── packagegroups │ │ ├── nativesdk-packagegroup-sdk-host.bb │ │ ├── packagegroup-base.bb │ │ ├── packagegroup-core-boot.bb │ │ ├── packagegroup-core-buildessential.bb │ │ ├── packagegroup-core-eclipse-debug.bb │ │ ├── packagegroup-core-nfs.bb │ │ ├── packagegroup-core-sdk.bb │ │ ├── packagegroup-core-ssh-dropbear.bb │ │ ├── packagegroup-core-ssh-openssh.bb │ │ ├── packagegroup-core-standalone-sdk-target.bb │ │ ├── packagegroup-core-tools-debug.bb │ │ ├── packagegroup-core-tools-profile.bb │ │ ├── packagegroup-core-tools-testapps.bb │ │ ├── packagegroup-cross-canadian.bb │ │ └── packagegroup-self-hosted.bb │ ├── psplash │ │ ├── files │ │ │ ├── psplash-init │ │ │ └── psplash-poky-img.h │ │ └── psplash_git.bb │ ├── readline │ │ ├── files │ │ │ ├── config-dirent-symbols.patch │ │ │ └── inputrc │ │ ├── readline-5.2 │ │ │ ├── configure-fix.patch │ │ │ └── fix-redundant-rpath.patch │ │ ├── readline-7.0 │ │ │ ├── configure-fix.patch │ │ │ └── norpath.patch │ │ ├── readline.inc │ │ ├── readline_5.2.bb │ │ └── readline_7.0.bb │ ├── sysfsutils │ │ ├── sysfsutils-2.1.0 │ │ │ ├── obsolete_automake_macros.patch │ │ │ ├── separatebuild.patch │ │ │ └── sysfsutils-2.0.0-class-dup.patch │ │ └── sysfsutils_2.1.0.bb │ ├── systemd │ │ ├── systemd-compat-units.bb │ │ ├── systemd-serialgetty.bb │ │ ├── systemd-serialgetty │ │ │ └── serial-getty@.service │ │ ├── systemd-systemctl-native.bb │ │ ├── systemd-systemctl │ │ │ └── systemctl │ │ ├── systemd.inc │ │ ├── systemd │ │ │ ├── 00-create-volatile.conf │ │ │ ├── 0001-core-device.c-Change-the-default-device-timeout-to-2.patch │ │ │ ├── 0002-units-Prefer-getty-to-agetty-in-console-setup-system.patch │ │ │ ├── 0003-define-exp10-if-missing.patch │ │ │ ├── 0004-Use-getenv-when-secure-versions-are-not-available.patch │ │ │ ├── 0005-binfmt-Don-t-install-dependency-links-at-install-tim.patch │ │ │ ├── 0006-configure-Check-for-additional-features-that-uclibc-.patch │ │ │ ├── 0007-use-lnr-wrapper-instead-of-looking-for-relative-opti.patch │ │ │ ├── 0008-nspawn-Use-execvpe-only-when-libc-supports-it.patch │ │ │ ├── 0009-util-bypass-unimplemented-_SC_PHYS_PAGES-system-conf.patch │ │ │ ├── 0010-implment-systemd-sysv-install-for-OE.patch │ │ │ ├── 0011-nss-mymachines-Build-conditionally-when-HAVE_MYHOSTN.patch │ │ │ ├── 0012-rules-whitelist-hd-devices.patch │ │ │ ├── 0013-sysv-generator-add-support-for-executing-scripts-und.patch │ │ │ ├── 0014-Make-root-s-home-directory-configurable.patch │ │ │ ├── 0015-systemd-user-avoid-using-system-auth.patch │ │ │ ├── 0016-Revert-rules-remove-firmware-loading-rules.patch │ │ │ ├── 0017-Revert-udev-remove-userspace-firmware-loading-suppor.patch │ │ │ ├── 0018-make-test-dir-configurable.patch │ │ │ ├── 0019-remove-duplicate-include-uchar.h.patch │ │ │ ├── 0020-check-for-uchar.h-in-configure.patch │ │ │ ├── 0021-include-missing.h-for-getting-secure_getenv-definiti.patch │ │ │ ├── 0022-socket-util-don-t-fail-if-libc-doesn-t-support-IDN.patch │ │ │ ├── CVE-2016-7795.patch │ │ │ ├── init │ │ │ ├── run-ptest │ │ │ ├── touchscreen.rules │ │ │ └── udev-re-enable-mount-propagation-for-udevd.patch │ │ └── systemd_230.bb │ ├── sysvinit │ │ ├── sysvinit-2.88dsf │ │ │ ├── crypt-lib.patch │ │ │ ├── install.patch │ │ │ └── pidof-add-m-option.patch │ │ ├── sysvinit-inittab │ │ │ ├── inittab │ │ │ └── start_getty │ │ ├── sysvinit-inittab_2.88dsf.bb │ │ ├── sysvinit │ │ │ ├── 0001-This-fixes-an-issue-that-clang-reports-about-mutlipl.patch │ │ │ ├── 01_bootlogd │ │ │ ├── bootlogd.init │ │ │ ├── rc │ │ │ ├── rcS │ │ │ ├── rcS-default │ │ │ └── realpath.patch │ │ └── sysvinit_2.88dsf.bb │ ├── udev │ │ ├── eudev │ │ │ ├── devfs-udev.rules │ │ │ ├── init │ │ │ ├── links.conf │ │ │ ├── local.rules │ │ │ ├── permissions.rules │ │ │ ├── run.rules │ │ │ ├── udev-cache │ │ │ ├── udev-cache.default │ │ │ └── udev.rules │ │ ├── eudev_3.2.bb │ │ ├── udev-extraconf │ │ │ ├── automount.rules │ │ │ ├── autonet.rules │ │ │ ├── localextra.rules │ │ │ ├── mount.blacklist │ │ │ ├── mount.sh │ │ │ └── network.sh │ │ └── udev-extraconf_1.1.bb │ ├── update-rc.d │ │ ├── update-rc.d │ │ │ ├── add-verbose.patch │ │ │ ├── check-if-symlinks-are-valid.patch │ │ │ └── fix-to-handle-priority-numbers-correctly.patch │ │ └── update-rc.d_0.7.bb │ ├── util-linux │ │ ├── util-linux.inc │ │ ├── util-linux │ │ │ ├── avoid_parallel_tests.patch │ │ │ ├── configure-sbindir.patch │ │ │ ├── display_testname_for_subtest.patch │ │ │ ├── ptest.patch │ │ │ ├── run-ptest │ │ │ ├── runuser-l.pamd │ │ │ ├── runuser.pamd │ │ │ ├── util-linux-native-qsort.patch │ │ │ └── uuid-test-error-api.patch │ │ └── util-linux_2.28.1.bb │ ├── volatile-binds │ │ ├── files │ │ │ ├── COPYING.MIT │ │ │ ├── mount-copybind │ │ │ └── volatile-binds.service.in │ │ └── volatile-binds.bb │ └── zlib │ │ ├── site_config │ │ └── headers │ │ ├── zlib-1.2.8 │ │ ├── Makefile-runtests.patch │ │ ├── ldflags-tests.patch │ │ ├── remove.ldconfig.call.patch │ │ └── run-ptest │ │ └── zlib_1.2.8.bb ├── recipes-devtools │ ├── apt │ │ ├── apt-native.inc │ │ ├── apt-native_1.2.12.bb │ │ ├── apt-package.inc │ │ ├── apt.inc │ │ ├── apt │ │ │ ├── 0001-Revert-always-run-dpkg-configure-a-at-the-end-of-our.patch │ │ │ ├── 0001-apt-1.2.12-Fix-musl-build.patch │ │ │ ├── 0001-environment.mak-musl-based-systems-can-generate-shar.patch │ │ │ ├── 0001-fix-the-gcc-version-check.patch │ │ │ ├── 0001-remove-Wsuggest-attribute-from-CFLAGS.patch │ │ │ ├── disable-configure-in-makefile.patch │ │ │ ├── disable-test.patch │ │ │ ├── fix-gcc-4.6-null-not-defined.patch │ │ │ ├── makerace.patch │ │ │ ├── no-nls-dpkg.patch │ │ │ ├── noconfigure.patch │ │ │ ├── nodoc.patch │ │ │ ├── truncate-filename.patch │ │ │ └── use-host.patch │ │ ├── apt_1.2.12.bb │ │ └── files │ │ │ ├── apt.conf │ │ │ ├── db_linking_hack.patch │ │ │ ├── environment.patch │ │ │ └── no-curl.patch │ ├── autoconf │ │ ├── autoconf.inc │ │ ├── autoconf │ │ │ ├── add_musl_config.patch │ │ │ ├── autoreconf-exclude.patch │ │ │ ├── autoreconf-gnuconfigize.patch │ │ │ ├── autotest-automake-result-format.patch │ │ │ ├── check-automake-cross-warning.patch │ │ │ ├── config_site.patch │ │ │ ├── fix_path_xtra.patch │ │ │ ├── performance.patch │ │ │ ├── preferbash.patch │ │ │ ├── program_prefix.patch │ │ │ └── remove-usr-local-lib-from-m4.patch │ │ └── autoconf_2.69.bb │ ├── autogen │ │ ├── autogen-native_5.18.12.bb │ │ └── autogen │ │ │ ├── fix-script-err-when-processing-libguile.patch │ │ │ ├── increase-timeout-limit.patch │ │ │ └── mk-tpl-config.sh-force-exit-value-to-be-0-in-subproc.patch │ ├── automake │ │ ├── automake.inc │ │ ├── automake │ │ │ ├── buildtest.patch │ │ │ ├── new_rt_path_for_test-driver.patch │ │ │ ├── performance.patch │ │ │ └── python-libdir.patch │ │ └── automake_1.15.bb │ ├── binutils │ │ ├── binutils-2.27.inc │ │ ├── binutils-cross-canadian.inc │ │ ├── binutils-cross-canadian_2.27.bb │ │ ├── binutils-cross.inc │ │ ├── binutils-cross_2.27.bb │ │ ├── binutils-crosssdk_2.27.bb │ │ ├── binutils.inc │ │ ├── binutils │ │ │ ├── 0001-Generate-relocatable-SDKs.patch │ │ │ ├── 0001-ppc-apuinfo-for-spe-parsed-incorrectly.patch │ │ │ ├── 0002-configure-widen-the-regexp-for-SH-architectures.patch │ │ │ ├── 0003-Point-scripts-location-to-libdir.patch │ │ │ ├── 0004-Only-generate-an-RPATH-entry-if-LD_RUN_PATH-is-not-e.patch │ │ │ ├── 0005-Explicitly-link-with-libm-on-uclibc.patch │ │ │ ├── 0006-Use-libtool-2.4.patch │ │ │ ├── 0007-Add-the-armv5e-architecture-to-binutils.patch │ │ │ ├── 0008-don-t-let-the-distro-compiler-point-to-the-wrong-ins.patch │ │ │ ├── 0009-warn-for-uses-of-system-directories-when-cross-linki.patch │ │ │ ├── 0010-Fix-rpath-in-libtool-when-sysroot-is-enabled.patch │ │ │ ├── 0011-Change-default-emulation-for-mips64-linux.patch │ │ │ ├── 0012-Add-support-for-Netlogic-XLP.patch │ │ │ ├── 0013-fix-the-incorrect-assembling-for-ppc-wait-mnemonic.patch │ │ │ ├── 0014-libtool-remove-rpath.patch │ │ │ ├── 0015-Refine-.cfi_sections-check-to-only-consider-compact-.patch │ │ │ ├── 0015-binutils-mips-gas-pic-relax-linkonce.diff │ │ │ └── 0016-Fix-seg-fault-in-ARM-linker-when-trying-to-parse-a-b.patch │ │ └── binutils_2.27.bb │ ├── bison │ │ ├── bison │ │ │ ├── 0001-Unset-need_charset_alias-when-building-for-musl.patch │ │ │ ├── 0001-src-local.mk-fix-parallel-issue.patch │ │ │ ├── add-with-bisonlocaledir.patch │ │ │ ├── bison-2.3_m4.patch │ │ │ ├── dont-depend-on-help2man.patch.patch │ │ │ └── m4.patch │ │ ├── bison_2.3.bb │ │ └── bison_3.0.4.bb │ ├── bootchart2 │ │ ├── bootchart2 │ │ │ ├── 0001-Fixed-Missing-default-value-for-BOOTLOG_DEST.patch │ │ │ ├── 0001-collector-Allocate-space-on-heap-for-chunks.patch │ │ │ └── bootchartd_stop.sh │ │ └── bootchart2_0.14.8.bb │ ├── btrfs-tools │ │ └── btrfs-tools_4.8.4.bb │ ├── build-compare │ │ ├── build-compare_git.bb │ │ └── files │ │ │ ├── 0001-Add-support-for-deb-and-ipk-packaging.patch │ │ │ ├── Ignore-DWARF-sections.patch │ │ │ ├── Rename-rpm-check.sh-to-pkg-diff.sh.patch │ │ │ ├── functions.sh-improve-deb-and-ipk-checking.patch │ │ │ ├── functions.sh-remove-space-at-head.patch │ │ │ ├── functions.sh-run-rpm-once-to-make-it-faster.patch │ │ │ ├── pkg-diff.sh-check-for-fifo-named-pipe.patch │ │ │ ├── pkg-diff.sh-check_single_file-return-at-once-when-sa.patch │ │ │ └── pkg-diff.sh-remove-space-in-the-end-for-ftype.patch │ ├── ccache │ │ ├── ccache.inc │ │ ├── ccache_3.2.5.bb │ │ └── files │ │ │ ├── 0002-dev.mk.in-fix-file-name-too-long.patch │ │ │ └── Revert-Create-man-page-in-the-make-install-from-git-.patch │ ├── cdrtools │ │ └── cdrtools-native_3.01.bb │ ├── chrpath │ │ ├── chrpath │ │ │ └── standarddoc.patch │ │ └── chrpath_0.16.bb │ ├── cmake │ │ ├── cmake-native_3.7.0.bb │ │ ├── cmake.inc │ │ ├── cmake │ │ │ ├── OEToolchainConfig.cmake │ │ │ ├── avoid-gcc-warnings-with-Wstrict-prototypes.patch │ │ │ ├── cmlibarchive-disable-ext2fs.patch │ │ │ ├── environment.d-cmake.sh │ │ │ ├── qt4-fail-silent.patch │ │ │ └── support-oe-qt4-tools-names.patch │ │ └── cmake_3.7.0.bb │ ├── cve-check-tool │ │ ├── cve-check-tool_5.6.4.bb │ │ └── files │ │ │ ├── 0001-print-progress-in-percent-when-downloading-CVE-db.patch │ │ │ └── check-for-malloc_trim-before-using-it.patch │ ├── desktop-file-utils │ │ └── desktop-file-utils-native_0.23.bb │ ├── devel-config │ │ ├── distcc-config.bb │ │ ├── distcc-config │ │ │ └── distcc.sh │ │ ├── nfs-export-root.bb │ │ └── nfs-export-root │ │ │ └── exports │ ├── diffstat │ │ ├── diffstat │ │ │ └── run-ptest │ │ └── diffstat_1.61.bb │ ├── distcc │ │ ├── distcc_3.2.bb │ │ └── files │ │ │ ├── 0001-zeroconf-Include-fcntl.h.patch │ │ │ ├── default │ │ │ ├── distcc │ │ │ ├── distcc.service │ │ │ ├── distccmon-gnome.desktop │ │ │ └── separatebuilddir.patch │ ├── dmidecode │ │ └── dmidecode_3.0.bb │ ├── docbook-xml │ │ ├── docbook-xml-dtd4 │ │ │ ├── LICENSE-OASIS │ │ │ ├── docbook-xml-update-catalog.xml.patch │ │ │ └── docbook-xml.xml │ │ ├── docbook-xml-dtd4_4.5.bb │ │ ├── docbook-xsl-stylesheets │ │ │ ├── docbook-xsl-stylesheets-no-bashism-in-docbook-xsl-up.patch │ │ │ └── docbook-xsl.xml │ │ └── docbook-xsl-stylesheets_1.79.1.bb │ ├── dosfstools │ │ ├── dosfstools │ │ │ ├── 0001-Include-fcntl.h-for-getting-loff_t-definition.patch │ │ │ ├── alignment_hack.patch │ │ │ ├── dosfstools-msdos_fs-types.patch │ │ │ ├── fix_populated_dosfs_creation.patch │ │ │ ├── include-linux-types.patch │ │ │ ├── mkdosfs-bootcode.patch │ │ │ ├── mkdosfs-dir.patch │ │ │ ├── msdos_fat12_undefined.patch │ │ │ └── nofat32_autoselect.patch │ │ ├── dosfstools_2.11.bb │ │ └── dosfstools_4.0.bb │ ├── dpkg │ │ ├── dpkg.inc │ │ ├── dpkg │ │ │ ├── 0002-Adapt-to-linux-wrs-kernel-version-which-has-characte.patch │ │ │ ├── 0003-Our-pre-postinsts-expect-D-to-be-set-when-running-in.patch │ │ │ ├── 0004-The-lutimes-function-doesn-t-work-properly-for-all-s.patch │ │ │ ├── 0005-dpkg-compiler.m4-remove-Wvla.patch │ │ │ ├── 0006-add-musleabi-to-known-target-tripets.patch │ │ │ ├── add_armeb_triplet_entry.patch │ │ │ ├── arch_pm.patch │ │ │ ├── dpkg-configure.service │ │ │ ├── glibc2.5-sync_file_range.patch │ │ │ ├── noman.patch │ │ │ └── remove-tar-no-timestamp.patch │ │ └── dpkg_1.18.7.bb │ ├── e2fsprogs │ │ ├── e2fsprogs.inc │ │ ├── e2fsprogs │ │ │ ├── Revert-mke2fs-enable-the-metadata_csum-and-64bit-fea.patch │ │ │ ├── acinclude.m4 │ │ │ ├── e2fsprogs-fix-missing-check-for-permission-denied.patch │ │ │ ├── mkdir.patch │ │ │ ├── ptest.patch │ │ │ ├── quiet-debugfs.patch │ │ │ ├── remove.ldconfig.call.patch │ │ │ └── run-ptest │ │ └── e2fsprogs_1.43.bb │ ├── elfutils │ │ ├── elfutils-0.148 │ │ │ ├── arm_backend.diff │ │ │ ├── elf_additions.diff │ │ │ ├── elf_begin.c-CVE-2014-9447-fix.patch │ │ │ ├── elfutils-ar-c-fix-num-passed-to-memset.patch │ │ │ ├── elfutils-fsize.patch │ │ │ ├── fix-build-gcc-4.8.patch │ │ │ ├── fix_for_gcc-4.7.patch │ │ │ ├── gcc6.patch │ │ │ ├── hppa_backend.diff │ │ │ ├── i386_dis.h │ │ │ ├── m68k_backend.diff │ │ │ ├── mips_backend.diff │ │ │ ├── nm-Fix-size-passed-to-snprintf-for-invalid-sh_name-case.patch │ │ │ ├── redhat-portability.diff │ │ │ ├── redhat-robustify.diff │ │ │ ├── remove-unused.patch │ │ │ ├── testsuite-ignore-elflint.diff │ │ │ ├── uclibc-support-for-elfutils-0.148.patch │ │ │ └── x86_64_dis.h │ │ ├── elfutils-0.166 │ │ │ ├── 0001-Ignore-differences-between-mips-machine-identifiers.patch │ │ │ ├── 0001-build-Provide-alternatives-for-glibc-assumptions-hel.patch │ │ │ ├── 0001-elf_getarsym-Silence-Werror-maybe-uninitialized-fals.patch │ │ │ ├── 0001-fix-a-stack-usage-warning.patch │ │ │ ├── 0001-remove-the-unneed-checking.patch │ │ │ ├── 0002-Add-support-for-mips64-abis-in-mips_retval.c.patch │ │ │ ├── 0003-Add-mips-n64-relocation-format-hack.patch │ │ │ ├── aarch64_uio.patch │ │ │ ├── arm_backend.diff │ │ │ ├── elfcmp-fix-self-comparision.patch │ │ │ ├── fixheadercheck.patch │ │ │ ├── hppa_backend.diff │ │ │ ├── kfreebsd_path.patch │ │ │ ├── m68k_backend.diff │ │ │ ├── mips_backend.diff │ │ │ ├── mips_readelf_w.patch │ │ │ ├── shadow.patch │ │ │ ├── testsuite-ignore-elflint.diff │ │ │ └── uclibc-support.patch │ │ ├── elfutils │ │ │ ├── Fix_elf_cvt_gunhash.patch │ │ │ └── dso-link-change.patch │ │ ├── elfutils_0.148.bb │ │ └── elfutils_0.166.bb │ ├── expect │ │ ├── expect │ │ │ ├── 0001-configure.in.patch │ │ │ ├── 0001-expect-install-scripts-without-using-the-fixline1-tc.patch │ │ │ ├── 0002-tcl.m4.patch │ │ │ └── 01-example-shebang.patch │ │ └── expect_5.45.bb │ ├── fdisk │ │ └── gptfdisk_1.0.1.bb │ ├── file │ │ ├── file │ │ │ ├── 0001-Add-P-prompt-into-Usage-info.patch │ │ │ └── debian-742262.patch │ │ └── file_5.28.bb │ ├── flex │ │ ├── flex │ │ │ ├── 0001-tests-add-a-target-for-building-tests-without-runnin.patch │ │ │ ├── 0002-avoid-c-comments-in-c-code-fails-with-gcc-6.patch │ │ │ ├── CVE-2016-6354.patch │ │ │ ├── disable-tests.patch │ │ │ ├── do_not_create_pdf_doc.patch │ │ │ └── run-ptest │ │ └── flex_2.6.0.bb │ ├── gcc │ │ ├── gcc-5.4.inc │ │ ├── gcc-5.4 │ │ │ ├── 0001-gcc-4.3.1-ARCH_FLAGS_FOR_TARGET.patch │ │ │ ├── 0002-uclibc-conf.patch │ │ │ ├── 0003-gcc-uclibc-locale-ctype_touplow_t.patch │ │ │ ├── 0004-uclibc-locale.patch │ │ │ ├── 0005-uclibc-locale-no__x.patch │ │ │ ├── 0006-uclibc-locale-wchar_fix.patch │ │ │ ├── 0007-uclibc-locale-update.patch │ │ │ ├── 0008-missing-execinfo_h.patch │ │ │ ├── 0009-c99-snprintf.patch │ │ │ ├── 0010-gcc-poison-system-directories.patch │ │ │ ├── 0011-gcc-poison-dir-extend.patch │ │ │ ├── 0012-gcc-4.3.3-SYSROOT_CFLAGS_FOR_TARGET.patch │ │ │ ├── 0013-64-bit-multilib-hack.patch │ │ │ ├── 0014-optional-libstdc.patch │ │ │ ├── 0015-gcc-disable-MASK_RELAX_PIC_CALLS-bit.patch │ │ │ ├── 0016-COLLECT_GCC_OPTIONS.patch │ │ │ ├── 0017-Use-the-defaults.h-in-B-instead-of-S-and-t-oe-in-B.patch │ │ │ ├── 0018-fortran-cross-compile-hack.patch │ │ │ ├── 0019-libgcc-sjlj-check.patch │ │ │ ├── 0020-cpp-honor-sysroot.patch │ │ │ ├── 0021-MIPS64-Default-to-N64-ABI.patch │ │ │ ├── 0022-Define-GLIBC_DYNAMIC_LINKER-and-UCLIBC_DYNAMIC_LINKE.patch │ │ │ ├── 0023-gcc-Fix-argument-list-too-long-error.patch │ │ │ ├── 0024-Disable-sdt.patch │ │ │ ├── 0025-libtool.patch │ │ │ ├── 0026-gcc-armv4-pass-fix-v4bx-to-linker-to-support-EABI.patch │ │ │ ├── 0027-Use-the-multilib-config-files-from-B-instead-of-usin.patch │ │ │ ├── 0028-Avoid-using-libdir-from-.la-which-usually-points-to-.patch │ │ │ ├── 0029-export-CPP.patch │ │ │ ├── 0030-Enable-SPE-AltiVec-generation-on-powepc-linux-target.patch │ │ │ ├── 0031-Disable-the-MULTILIB_OSDIRNAMES-and-other-multilib-o.patch │ │ │ ├── 0032-Ensure-target-gcc-headers-can-be-included.patch │ │ │ ├── 0033-gcc-4.8-won-t-build-with-disable-dependency-tracking.patch │ │ │ ├── 0034-Don-t-search-host-directory-during-relink-if-inst_pr.patch │ │ │ ├── 0035-Dont-link-the-plugins-with-libgomp-explicitly.patch │ │ │ ├── 0036-Use-SYSTEMLIBS_DIR-replacement-instead-of-hardcoding.patch │ │ │ ├── 0037-aarch64-Add-support-for-musl-ldso.patch │ │ │ ├── 0038-fix-g-sysroot.patch │ │ │ ├── 0039-libcc1-fix-libcc1-s-install-path-and-rpath.patch │ │ │ ├── 0040-handle-sysroot-support-for-nativesdk-gcc.patch │ │ │ ├── 0041-Search-target-sysroot-gcc-version-specific-dirs-with.patch │ │ │ ├── 0042-Fix-various-_FOR_BUILD-and-related-variables.patch │ │ │ ├── 0043-libstdc-Support-musl.patch │ │ │ ├── 0044-Adding-mmusl-as-a-musl-libc-specifier-and-the-necess.patch │ │ │ ├── 0045-Support-for-arm-linux-musl.patch │ │ │ ├── 0046-Get-rid-of-ever-broken-fixincludes-on-musl.patch │ │ │ ├── 0047-nios2-Define-MUSL_DYNAMIC_LINKER.patch │ │ │ ├── 0048-ssp_nonshared.patch │ │ │ ├── 0049-Disable-the-weak-reference-logic-in-gthr.h-for-os-ge.patch │ │ │ ├── 0050-powerpc-pass-secure-plt-to-the-linker.patch │ │ │ ├── 0051-Ignore-fdebug-prefix-map-in-producer-string-by-Danie.patch │ │ │ ├── 0052-nios2-use-ret-with-r31.patch │ │ │ ├── 0053-expr.c-PR-target-65358-Avoid-clobbering-partial-argu.patch │ │ │ ├── 0054-support-ffile-prefix-map.patch │ │ │ ├── 0055-Reuse-fdebug-prefix-map-to-replace-ffile-prefix-map.patch │ │ │ ├── 0056-Enable-libc-provide-ssp-and-gcc_cv_target_dl_iterate.patch │ │ │ ├── 0057-unwind-fix-for-musl.patch │ │ │ ├── 0058-fdebug-prefix-map-support-to-remap-relative-path.patch │ │ │ └── 0059-libgcc-use-ldflags.patch │ │ ├── gcc-6.2.inc │ │ ├── gcc-6.2 │ │ │ ├── 0001-gcc-4.3.1-ARCH_FLAGS_FOR_TARGET.patch │ │ │ ├── 0002-uclibc-conf.patch │ │ │ ├── 0003-gcc-uclibc-locale-ctype_touplow_t.patch │ │ │ ├── 0004-uclibc-locale.patch │ │ │ ├── 0005-uclibc-locale-no__x.patch │ │ │ ├── 0006-uclibc-locale-wchar_fix.patch │ │ │ ├── 0007-uclibc-locale-update.patch │ │ │ ├── 0008-missing-execinfo_h.patch │ │ │ ├── 0009-c99-snprintf.patch │ │ │ ├── 0010-gcc-poison-system-directories.patch │ │ │ ├── 0011-gcc-poison-dir-extend.patch │ │ │ ├── 0012-gcc-4.3.3-SYSROOT_CFLAGS_FOR_TARGET.patch │ │ │ ├── 0013-64-bit-multilib-hack.patch │ │ │ ├── 0014-optional-libstdc.patch │ │ │ ├── 0015-gcc-disable-MASK_RELAX_PIC_CALLS-bit.patch │ │ │ ├── 0016-COLLECT_GCC_OPTIONS.patch │ │ │ ├── 0017-Use-the-defaults.h-in-B-instead-of-S-and-t-oe-in-B.patch │ │ │ ├── 0018-fortran-cross-compile-hack.patch │ │ │ ├── 0019-cpp-honor-sysroot.patch │ │ │ ├── 0020-MIPS64-Default-to-N64-ABI.patch │ │ │ ├── 0021-Define-GLIBC_DYNAMIC_LINKER-and-UCLIBC_DYNAMIC_LINKE.patch │ │ │ ├── 0022-gcc-Fix-argument-list-too-long-error.patch │ │ │ ├── 0023-Disable-sdt.patch │ │ │ ├── 0024-libtool.patch │ │ │ ├── 0025-gcc-armv4-pass-fix-v4bx-to-linker-to-support-EABI.patch │ │ │ ├── 0026-Use-the-multilib-config-files-from-B-instead-of-usin.patch │ │ │ ├── 0027-Avoid-using-libdir-from-.la-which-usually-points-to-.patch │ │ │ ├── 0028-export-CPP.patch │ │ │ ├── 0029-Enable-SPE-AltiVec-generation-on-powepc-linux-target.patch │ │ │ ├── 0030-Disable-the-MULTILIB_OSDIRNAMES-and-other-multilib-o.patch │ │ │ ├── 0031-Ensure-target-gcc-headers-can-be-included.patch │ │ │ ├── 0032-gcc-4.8-won-t-build-with-disable-dependency-tracking.patch │ │ │ ├── 0033-Don-t-search-host-directory-during-relink-if-inst_pr.patch │ │ │ ├── 0034-Use-SYSTEMLIBS_DIR-replacement-instead-of-hardcoding.patch │ │ │ ├── 0035-aarch64-Add-support-for-musl-ldso.patch │ │ │ ├── 0036-libcc1-fix-libcc1-s-install-path-and-rpath.patch │ │ │ ├── 0037-handle-sysroot-support-for-nativesdk-gcc.patch │ │ │ ├── 0038-Search-target-sysroot-gcc-version-specific-dirs-with.patch │ │ │ ├── 0039-Fix-various-_FOR_BUILD-and-related-variables.patch │ │ │ ├── 0040-nios2-Define-MUSL_DYNAMIC_LINKER.patch │ │ │ ├── 0041-ssp_nonshared.patch │ │ │ ├── 0042-gcc-libcpp-support-ffile-prefix-map-old-new.patch │ │ │ ├── 0043-Reuse-fdebug-prefix-map-to-replace-ffile-prefix-map.patch │ │ │ ├── 0044-gcc-final.c-fdebug-prefix-map-support-to-remap-sourc.patch │ │ │ ├── 0045-libgcc-Add-knob-to-use-ldbl-128-on-ppc.patch │ │ │ ├── 0046-Link-libgcc-using-LDFLAGS-not-just-SHLIB_LDFLAGS.patch │ │ │ ├── 0047-libgcc_s-Use-alias-for-__cpu_indicator_init-instead-.patch │ │ │ ├── 0048-ARM-PR-target-71056-Don-t-use-vectorized-builtins-wh.patch │ │ │ └── CVE-2016-4490.patch │ │ ├── gcc-common.inc │ │ ├── gcc-configure-common.inc │ │ ├── gcc-cross-canadian.inc │ │ ├── gcc-cross-canadian_5.4.bb │ │ ├── gcc-cross-canadian_6.2.bb │ │ ├── gcc-cross-initial.inc │ │ ├── gcc-cross-initial_5.4.bb │ │ ├── gcc-cross-initial_6.2.bb │ │ ├── gcc-cross.inc │ │ ├── gcc-cross_5.4.bb │ │ ├── gcc-cross_6.2.bb │ │ ├── gcc-crosssdk-initial.inc │ │ ├── gcc-crosssdk-initial_5.4.bb │ │ ├── gcc-crosssdk-initial_6.2.bb │ │ ├── gcc-crosssdk.inc │ │ ├── gcc-crosssdk_5.4.bb │ │ ├── gcc-crosssdk_6.2.bb │ │ ├── gcc-multilib-config.inc │ │ ├── gcc-runtime.inc │ │ ├── gcc-runtime_5.4.bb │ │ ├── gcc-runtime_6.2.bb │ │ ├── gcc-sanitizers.inc │ │ ├── gcc-sanitizers_5.4.bb │ │ ├── gcc-sanitizers_6.2.bb │ │ ├── gcc-shared-source.inc │ │ ├── gcc-source.inc │ │ ├── gcc-source_5.4.bb │ │ ├── gcc-source_6.2.bb │ │ ├── gcc-target.inc │ │ ├── gcc_5.4.bb │ │ ├── gcc_6.2.bb │ │ ├── libgcc-common.inc │ │ ├── libgcc-initial.inc │ │ ├── libgcc-initial_5.4.bb │ │ ├── libgcc-initial_6.2.bb │ │ ├── libgcc.inc │ │ ├── libgcc_5.4.bb │ │ ├── libgcc_6.2.bb │ │ ├── libgfortran.inc │ │ ├── libgfortran_5.4.bb │ │ └── libgfortran_6.2.bb │ ├── gdb │ │ ├── gdb-7.11.1.inc │ │ ├── gdb-common.inc │ │ ├── gdb-cross-canadian.inc │ │ ├── gdb-cross-canadian_7.11.1.bb │ │ ├── gdb-cross.inc │ │ ├── gdb-cross_7.11.1.bb │ │ ├── gdb.inc │ │ ├── gdb │ │ │ ├── 0001-include-sys-types.h-for-mode_t.patch │ │ │ ├── 0002-make-man-install-relative-to-DESTDIR.patch │ │ │ ├── 0003-mips-linux-nat-Define-_ABIO32-if-not-defined.patch │ │ │ ├── 0004-ppc-ptrace-Define-pt_regs-uapi_pt_regs-on-GLIBC-syst.patch │ │ │ ├── 0005-Add-support-for-Renesas-SH-sh4-architecture.patch │ │ │ ├── 0006-Dont-disable-libreadline.a-when-using-disable-static.patch │ │ │ ├── 0007-use-asm-sgidefs.h.patch │ │ │ ├── 0008-Use-exorted-definitions-of-SIGRTMIN.patch │ │ │ ├── 0009-Change-order-of-CFLAGS.patch │ │ │ ├── 0010-resolve-restrict-keyword-conflict.patch │ │ │ └── 0011-avx_mpx.patch │ │ └── gdb_7.11.1.bb │ ├── git │ │ ├── git.inc │ │ └── git_2.11.0.bb │ ├── gnu-config │ │ ├── gnu-config │ │ │ ├── config-guess-uclibc.patch │ │ │ ├── gnu-configize.in │ │ │ ├── musl-support.patch │ │ │ └── uclibc.patch │ │ ├── gnu-config_20120814.bb │ │ └── gnu-config_git.bb │ ├── guile │ │ ├── files │ │ │ ├── 0002-Recognize-nios2-as-compilation-target.patch │ │ │ ├── arm_aarch64.patch │ │ │ ├── arm_endianness.patch │ │ │ ├── debian │ │ │ │ ├── 0002-Mark-Unused-modules-are-removed-gc-test-as-unresolve.patch │ │ │ │ └── 0003-Mark-mutex-with-owner-not-retained-threads-test-as-u.patch │ │ │ ├── guile_2.0.6_fix_sed_error.patch │ │ │ ├── libguile-Makefile.am-hook.patch │ │ │ ├── opensuse │ │ │ │ └── guile-64bit.patch │ │ │ └── workaround-ice-ssa-corruption.patch │ │ └── guile_2.0.12.bb │ ├── help2man │ │ └── help2man-native_1.47.4.bb │ ├── i2c-tools │ │ ├── files │ │ │ └── Module.mk │ │ └── i2c-tools_3.1.2.bb │ ├── icecc-create-env │ │ ├── icecc-create-env-native_0.1.bb │ │ └── icecc-create-env │ │ │ └── icecc-create-env │ ├── icon-naming-utils │ │ └── icon-naming-utils_0.8.90.bb │ ├── intltool │ │ ├── intltool │ │ │ ├── intltool-nowarn.patch │ │ │ ├── noperlcheck.patch │ │ │ ├── perl-522-deprecations.patch │ │ │ └── remove-perl-check.patch │ │ └── intltool_0.51.0.bb │ ├── json-c │ │ ├── json-c │ │ │ ├── 0001-Link-against-libm-when-needed.patch │ │ │ └── 0001-json_tokener-requires-INF-and-NAN.patch │ │ └── json-c_0.12.bb │ ├── kconfig-frontends │ │ └── kconfig-frontends_3.12.0.0.bb │ ├── libtool │ │ ├── libtool-2.4.6.inc │ │ ├── libtool-cross_2.4.6.bb │ │ ├── libtool-native_2.4.6.bb │ │ ├── libtool │ │ │ ├── 0001-libtool-Fix-support-for-NIOS2-processor.patch │ │ │ ├── dont-depend-on-help2man.patch │ │ │ ├── fix-final-rpath.patch │ │ │ ├── fix-resolve-lt-sysroot.patch │ │ │ ├── fix-rpath.patch │ │ │ ├── fixinstall.patch │ │ │ ├── nohardcodepaths.patch │ │ │ ├── norm-rpath.patch │ │ │ ├── prefix.patch │ │ │ ├── rename-with-sysroot.patch │ │ │ ├── trailingslash.patch │ │ │ ├── unwind-opt-parsing.patch │ │ │ └── use-sysroot-in-libpath.patch │ │ ├── libtool_2.4.6.bb │ │ └── nativesdk-libtool_2.4.6.bb │ ├── m4 │ │ ├── m4-1.4.17.inc │ │ ├── m4-1.4.9.inc │ │ ├── m4-native_1.4.17.bb │ │ ├── m4.inc │ │ ├── m4 │ │ │ ├── 0001-Unset-need_charset_alias-when-building-for-musl.patch │ │ │ ├── ac_config_links.patch │ │ │ ├── fix_for_circular_dependency.patch │ │ │ └── remove-gets.patch │ │ ├── m4_1.4.17.bb │ │ └── m4_1.4.9.bb │ ├── make │ │ ├── make-3.81 │ │ │ ├── make_fix_for_automake-1.12.patch │ │ │ └── makeinfo.patch │ │ ├── make.inc │ │ ├── make_3.81.bb │ │ └── make_4.2.1.bb │ ├── makedevs │ │ ├── makedevs │ │ │ ├── COPYING.patch │ │ │ └── makedevs.c │ │ └── makedevs_1.0.1.bb │ ├── mkelfimage │ │ ├── mkelfimage │ │ │ ├── cross-compile.patch │ │ │ └── fix-makefile-to-find-libz.patch │ │ └── mkelfimage_git.bb │ ├── mklibs │ │ ├── files │ │ │ ├── ac_init_fix.patch │ │ │ ├── avoid-failure-on-symbol-provided-by-application.patch │ │ │ ├── fix_STT_GNU_IFUNC.patch │ │ │ ├── fix_cross_compile.patch │ │ │ ├── show-GNU-unique-symbols-as-provided-symbols.patch │ │ │ └── sysrooted-ldso.patch │ │ └── mklibs-native_0.1.41.bb │ ├── mmc │ │ └── mmc-utils_git.bb │ ├── mtd │ │ ├── mtd-utils │ │ │ ├── 0001-Fix-build-with-musl.patch │ │ │ ├── 010-fix-rpmatch.patch │ │ │ ├── add-exclusion-to-mkfs-jffs2-git-2.patch │ │ │ ├── fix-armv7-neon-alignment.patch │ │ │ └── mtd-utils-fix-corrupt-cleanmarker-with-flash_erase--j-command.patch │ │ └── mtd-utils_git.bb │ ├── mtools │ │ ├── mtools │ │ │ ├── 0001-Continue-even-if-fs-size-is-not-divisible-by-sectors.patch │ │ │ ├── fix-broken-lz.patch │ │ │ ├── mtools-makeinfo.patch │ │ │ ├── mtools.patch │ │ │ ├── no-x11.gplv3.patch │ │ │ └── no-x11.patch │ │ ├── mtools_3.9.9.bb │ │ └── mtools_4.0.18.bb │ ├── nasm │ │ └── nasm_2.12.02.bb │ ├── opkg-utils │ │ ├── opkg-utils │ │ │ └── tar_ignore_error.patch │ │ └── opkg-utils_git.bb │ ├── opkg │ │ ├── opkg-arch-config_1.0.bb │ │ ├── opkg-keyrings_1.0.bb │ │ ├── opkg │ │ │ ├── 0001-opkg_conf-create-opkg.lock-in-run-instead-of-var-run.patch │ │ │ ├── opkg-configure.service │ │ │ └── opkg.conf │ │ └── opkg_0.3.3.bb │ ├── orc │ │ └── orc_0.4.26.bb │ ├── ossp-uuid │ │ ├── ossp-uuid │ │ │ ├── 0001-Change-library-name.patch │ │ │ ├── 0002-uuid-preserve-m-option-status-in-v-option-handling.patch │ │ │ ├── 0003-Fix-whatis-entries.patch │ │ │ ├── 0004-fix-data-uuid-from-string.patch │ │ │ ├── install-pc.patch │ │ │ ├── ldflags.patch │ │ │ ├── uuid-libtool.patch │ │ │ └── uuid-nostrip.patch │ │ └── ossp-uuid_1.6.2.bb │ ├── packagegroups │ │ └── packagegroup-core-device-devel.bb │ ├── patch │ │ ├── patch.inc │ │ ├── patch │ │ │ ├── 0001-Unset-need_charset_alias-when-building-for-musl.patch │ │ │ ├── debian.patch │ │ │ ├── global-reject-file.diff │ │ │ ├── install.patch │ │ │ └── unified-reject-files.diff │ │ ├── patch_2.5.9.bb │ │ └── patch_2.7.5.bb │ ├── patchelf │ │ ├── patchelf │ │ │ ├── Increase-maxSize-to-64MB.patch │ │ │ ├── Skip-empty-section-fixes-66.patch │ │ │ └── handle-read-only-files.patch │ │ └── patchelf_0.9.bb │ ├── pax-utils │ │ └── pax-utils_1.1.6.bb │ ├── perl │ │ ├── liberror-perl_0.17024.bb │ │ ├── liburi-perl_1.60.bb │ │ ├── libxml-parser-perl_2.44.bb │ │ ├── libxml-perl_0.08.bb │ │ ├── libxml-simple-perl_2.22.bb │ │ ├── perl-native_5.24.0.bb │ │ ├── perl-ptest.inc │ │ ├── perl-rdepends_5.24.0.inc │ │ ├── perl.inc │ │ ├── perl │ │ │ ├── Configure-multilib.patch │ │ │ ├── MM_Unix.pm.patch │ │ │ ├── Makefile.SH.patch │ │ │ ├── Makefile.patch │ │ │ ├── config.sh │ │ │ ├── config.sh-32 │ │ │ ├── config.sh-32-be │ │ │ ├── config.sh-32-le │ │ │ ├── config.sh-64 │ │ │ ├── config.sh-64-be │ │ │ ├── config.sh-64-le │ │ │ ├── cross-generate_uudmap.patch │ │ │ ├── debian │ │ │ │ ├── cpan-missing-site-dirs.diff │ │ │ │ ├── cpan_definstalldirs.diff │ │ │ │ ├── db_file_ver.diff │ │ │ │ ├── deprecate-with-apt.diff │ │ │ │ ├── doc_info.diff │ │ │ │ ├── enc2xs_inc.diff │ │ │ │ ├── errno_ver.diff │ │ │ │ ├── extutils_set_libperl_path.diff │ │ │ │ ├── fakeroot.diff │ │ │ │ ├── find_html2text.diff │ │ │ │ ├── fixes │ │ │ │ │ ├── document_makemaker_ccflags.diff │ │ │ │ │ ├── memoize_storable_nstore.diff │ │ │ │ │ ├── net_smtp_docs.diff │ │ │ │ │ ├── perl-Cnn.diff │ │ │ │ │ ├── pod_man_reproducible_date.diff │ │ │ │ │ ├── podman-empty-date.diff │ │ │ │ │ ├── podman-pipe.diff │ │ │ │ │ ├── podman-utc-docs.diff │ │ │ │ │ ├── podman-utc.diff │ │ │ │ │ └── respect_umask.diff │ │ │ │ ├── instmodsh_doc.diff │ │ │ │ ├── ld_run_path.diff │ │ │ │ ├── libnet_config_path.diff │ │ │ │ ├── libperl_embed_doc.diff │ │ │ │ ├── locale-robustness.diff │ │ │ │ ├── makemaker-pasthru.diff │ │ │ │ ├── makemaker_customized.diff │ │ │ │ ├── mod_paths.diff │ │ │ │ ├── no_packlist_perllocal.diff │ │ │ │ ├── patchlevel.diff │ │ │ │ ├── perl5db-x-terminal-emulator.patch │ │ │ │ ├── perlivp.diff │ │ │ │ ├── pod2man-customized.diff │ │ │ │ ├── prefix_changes.diff │ │ │ │ ├── prune_libs.diff │ │ │ │ ├── regen-skip.diff │ │ │ │ ├── skip-kfreebsd-crash.diff │ │ │ │ ├── skip-upstream-git-tests.diff │ │ │ │ ├── squelch-locale-warnings.diff │ │ │ │ └── writable_site_dirs.diff │ │ │ ├── dynaloaderhack.patch │ │ │ ├── ext-ODBM_File-hints-linux.pl-link-libgdbm_compat.patch │ │ │ ├── ext-ODBM_File-t-odbm.t-fix-the-path-of-dbmt_common.p.patch │ │ │ ├── fix_bad_rpath.patch │ │ │ ├── generate-sh.patch │ │ │ ├── installperl.patch │ │ │ ├── letgcc-find-errno.patch │ │ │ ├── make_ext.pl-fix-regenerate-makefile-failed-while-cc-.patch │ │ │ ├── native-nopacklist.patch │ │ │ ├── native-perlinc.patch │ │ │ ├── perl-PathTools-don-t-filter-out-blib-from-INC.patch │ │ │ ├── perl-archlib-exp.patch │ │ │ ├── perl-configpm-switch.patch │ │ │ ├── perl-configure.sh │ │ │ ├── perl-dynloader.patch │ │ │ ├── perl-enable-gdbm.patch │ │ │ ├── perl-errno-generation-gcc5.patch │ │ │ ├── perl-fix-CVE-2016-1238.patch │ │ │ ├── perl-fix-CVE-2016-6185.patch │ │ │ ├── perl-fix-conflict-between-skip_all-and-END.patch │ │ │ ├── perl-moreconfig.patch │ │ │ ├── perl-test-customized.patch │ │ │ ├── run-ptest │ │ │ ├── t-run-switches.t-perl5-perl.patch │ │ │ └── test │ │ │ │ ├── dist-threads-t-join.t-adjust-ps-option.patch │ │ │ │ └── ext-DynaLoader-t-DynaLoader.t-fix-calling-dl_findfil.patch │ │ └── perl_5.24.0.bb │ ├── pkgconfig │ │ ├── pkgconfig │ │ │ ├── 0001-gdate-Move-warning-pragma-outside-of-function.patch │ │ │ ├── 0001-glib-gettext.m4-Update-AM_GLIB_GNU_GETTEXT-to-match-.patch │ │ │ ├── fix-glib-configure-libtool-usage.patch │ │ │ └── pkg-config-native.in │ │ └── pkgconfig_git.bb │ ├── postinst-intercept │ │ └── nativesdk-postinst-intercept_1.0.bb │ ├── prelink │ │ ├── prelink │ │ │ ├── macros.prelink │ │ │ ├── prelink.conf │ │ │ ├── prelink.cron.daily │ │ │ └── prelink.default │ │ └── prelink_git.bb │ ├── pseudo │ │ ├── files │ │ │ ├── 0001-Don-t-send-SIGUSR1-to-init.patch │ │ │ ├── 0001-Quiet-diagnostics-during-startup-for-pseudo-d.patch │ │ │ ├── 0001-configure-Prune-PIE-flags.patch │ │ │ ├── 0002-Use-correct-file-descriptor.patch │ │ │ ├── 0003-Fix-renameat-parallel-to-previous-fix-to-rename.patch │ │ │ ├── Fix-xattr-performance.patch │ │ │ ├── More-correctly-fix-xattrs.patch │ │ │ ├── fallback-group │ │ │ ├── fallback-passwd │ │ │ └── moreretries.patch │ │ ├── pseudo.inc │ │ ├── pseudo_1.8.1.bb │ │ └── pseudo_git.bb │ ├── python-numpy │ │ ├── files │ │ │ ├── 0001-Don-t-search-usr-and-so-on-for-libraries-by-default-.patch │ │ │ ├── aarch64 │ │ │ │ ├── _numpyconfig.h │ │ │ │ └── config.h │ │ │ ├── arm │ │ │ │ ├── config.h │ │ │ │ └── numpyconfig.h │ │ │ ├── armeb │ │ │ │ ├── config.h │ │ │ │ └── numpyconfig.h │ │ │ ├── fix_shebang_f2py.patch │ │ │ ├── mipsarchn32eb │ │ │ │ ├── _numpyconfig.h │ │ │ │ └── config.h │ │ │ ├── mipsarchn32el │ │ │ │ ├── _numpyconfig.h │ │ │ │ └── config.h │ │ │ ├── mipsarchn64eb │ │ │ │ ├── _numpyconfig.h │ │ │ │ └── config.h │ │ │ ├── mipsarchn64el │ │ │ │ ├── _numpyconfig.h │ │ │ │ └── config.h │ │ │ ├── mipsarcho32eb │ │ │ │ ├── _numpyconfig.h │ │ │ │ └── config.h │ │ │ ├── mipsarcho32el │ │ │ │ ├── config.h │ │ │ │ └── numpyconfig.h │ │ │ ├── powerpc │ │ │ │ ├── _numpyconfig.h │ │ │ │ └── config.h │ │ │ ├── powerpc64 │ │ │ │ ├── _numpyconfig.h │ │ │ │ └── config.h │ │ │ ├── remove-build-path-in-comments.patch │ │ │ ├── x86-64 │ │ │ │ ├── _numpyconfig.h │ │ │ │ └── config.h │ │ │ └── x86 │ │ │ │ ├── config.h │ │ │ │ └── numpyconfig.h │ │ ├── python-numpy_1.11.2.bb │ │ └── python3-numpy_1.11.2.bb │ ├── python │ │ ├── python-2.7-manifest.inc │ │ ├── python-3.5-manifest.inc │ │ ├── python-async.inc │ │ ├── python-async_0.6.2.bb │ │ ├── python-git.inc │ │ ├── python-git_2.1.0.bb │ │ ├── python-gitdb.inc │ │ ├── python-gitdb_0.6.4.bb │ │ ├── python-mako.inc │ │ ├── python-mako_1.0.6.bb │ │ ├── python-native │ │ │ ├── 10-distutils-fix-swig-parameter.patch │ │ │ ├── 11-distutils-never-modify-shebang-line.patch │ │ │ ├── avoid_parallel_make_races_on_pgen.patch │ │ │ ├── debug.patch │ │ │ ├── multilib.patch │ │ │ ├── nohostlibs.patch │ │ │ ├── revert_use_of_sysconfigdata.patch │ │ │ └── unixccompiler.patch │ │ ├── python-native_2.7.12.bb │ │ ├── python-nose_1.3.7.bb │ │ ├── python-pexpect_4.2.1.bb │ │ ├── python-ptyprocess_0.5.1.bb │ │ ├── python-pycurl │ │ │ └── no-static-link.patch │ │ ├── python-pycurl_7.21.5.bb │ │ ├── python-scons-native_2.5.1.bb │ │ ├── python-scons_2.5.1.bb │ │ ├── python-setuptools.inc │ │ ├── python-setuptools_29.0.1.bb │ │ ├── python-six.inc │ │ ├── python-six_1.10.0.bb │ │ ├── python-smartpm │ │ │ ├── channels-rpm_sys-use-md5sum-instead-of-mtime-as-the-.patch │ │ │ ├── smart-add-deugging-when-targetpath-is-empty.patch │ │ │ ├── smart-add-for-rpm-ignoresize-check.patch │ │ │ ├── smart-already-installed-message.patch │ │ │ ├── smart-attempt-fix.patch │ │ │ ├── smart-attempt.patch │ │ │ ├── smart-cache.py-getPackages-matches-name-version.patch │ │ │ ├── smart-channel-remove-all.patch │ │ │ ├── smart-channelsdir.patch │ │ │ ├── smart-locale.patch │ │ │ ├── smart-recommends.patch │ │ │ ├── smart-rpm-transaction-failure-check.patch │ │ │ ├── smart-set-noprogress-for-pycurl.patch │ │ │ └── smartpm-rpm5-support-check-signatures.patch │ │ ├── python-smartpm_git.bb │ │ ├── python-smmap.inc │ │ ├── python-smmap_0.9.0.bb │ │ ├── python.inc │ │ ├── python │ │ │ ├── 0001-distutils-set-the-prefix-to-be-inside-staging-direct.patch │ │ │ ├── 01-use-proper-tools-for-cross-build.patch │ │ │ ├── 03-fix-tkinter-detection.patch │ │ │ ├── 05-enable-ctypes-cross-build.patch │ │ │ ├── 06-avoid_usr_lib_termcap_path_in_linking.patch │ │ │ ├── CVE-2016-5636.patch │ │ │ ├── add-CROSSPYTHONPATH-for-PYTHON_FOR_BUILD.patch │ │ │ ├── add-md5module-support.patch │ │ │ ├── avoid_parallel_make_races_on_pgen.patch │ │ │ ├── avoid_warning_about_tkinter.patch │ │ │ ├── avoid_warning_for_sunos_specific_module.patch │ │ │ ├── builddir.patch │ │ │ ├── cgi_py.patch │ │ │ ├── check-if-target-is-64b-not-host.patch │ │ │ ├── fix-makefile-for-ptest.patch │ │ │ ├── fix_for_using_different_libdir.patch │ │ │ ├── host_include_contamination.patch │ │ │ ├── multilib.patch │ │ │ ├── parallel-makeinst-create-bindir.patch │ │ │ ├── python-2.7.3-remove-bsdb-rpath.patch │ │ │ ├── python-fix-CVE-2016-1000110.patch │ │ │ ├── run-ptest │ │ │ ├── search_db_h_in_inc_dirs_and_avoid_warning.patch │ │ │ ├── setup_py_skip_cross_import_check.patch │ │ │ ├── setuptweaks.patch │ │ │ ├── sitecustomize.py │ │ │ └── use_sysroot_ncurses_instead_of_host.patch │ │ ├── python3-async_0.6.2.bb │ │ ├── python3-dbus_1.2.4.bb │ │ ├── python3-docutils_0.12.bb │ │ ├── python3-git_2.1.0.bb │ │ ├── python3-gitdb_0.6.4.bb │ │ ├── python3-mako_1.0.6.bb │ │ ├── python3-native_3.5.2.bb │ │ ├── python3-nose_1.3.7.bb │ │ ├── python3-pip_9.0.1.bb │ │ ├── python3-pycairo_1.10.0.bb │ │ ├── python3-pygobject │ │ │ └── 0001-configure.ac-add-sysroot-path-to-GI_DATADIR-don-t-se.patch │ │ ├── python3-pygobject_3.22.0.bb │ │ ├── python3-setuptools_29.0.1.bb │ │ ├── python3-six_1.10.0.bb │ │ ├── python3-smmap_0.9.0.bb │ │ ├── python3 │ │ │ ├── 000-cross-compile.patch │ │ │ ├── 0001-Do-not-use-the-shell-version-of-python-config-that-w.patch │ │ │ ├── 0001-h2py-Fix-issue-13032-where-it-fails-with-UnicodeDeco.patch │ │ │ ├── 03-fix-tkinter-detection.patch │ │ │ ├── 030-fixup-include-dirs.patch │ │ │ ├── 070-dont-clean-ipkg-install.patch │ │ │ ├── 080-distutils-dont_adjust_files.patch │ │ │ ├── 12-distutils-prefix-is-inside-staging-area.patch │ │ │ ├── 130-readline-setup.patch │ │ │ ├── 150-fix-setupterm.patch │ │ │ ├── CVE-2016-5636.patch │ │ │ ├── avoid-ncursesw-include-path.patch │ │ │ ├── avoid_warning_about_tkinter.patch │ │ │ ├── cgi_py.patch │ │ │ ├── configure.ac-fix-LIBPL.patch │ │ │ ├── fix_for_using_different_libdir.patch │ │ │ ├── host_include_contamination.patch │ │ │ ├── python-3.3-multilib.patch │ │ │ ├── python-config.patch │ │ │ ├── python3-fix-CVE-2016-1000110.patch │ │ │ ├── python3-setup.py-no-host-headers-libs.patch │ │ │ ├── python3-use-CROSSPYTHONPATH-for-PYTHON_FOR_BUILD.patch │ │ │ ├── setup.py-check-cross_compiling-when-get-FLAGS.patch │ │ │ ├── setup.py-find-libraries-in-staging-dirs.patch │ │ │ ├── setuptweaks.patch │ │ │ ├── shutil-follow-symlink-fix.patch │ │ │ ├── sitecustomize.py │ │ │ ├── sysconfig.py-add-_PYTHON_PROJECT_SRC.patch │ │ │ ├── sysroot-include-headers.patch │ │ │ ├── tweak-MULTIARCH-for-powerpc-linux-gnuspe.patch │ │ │ ├── unixccompiler.patch │ │ │ └── use_packed_importlib.patch │ │ ├── python3_3.5.2.bb │ │ └── python_2.7.12.bb │ ├── qemu │ │ ├── nativesdk-qemu-helper_1.0.bb │ │ ├── qemu-helper-native_1.0.bb │ │ ├── qemu-helper │ │ │ └── tunctl.c │ │ ├── qemu-targets.inc │ │ ├── qemu.inc │ │ ├── qemu │ │ │ ├── 0001-target-mips-add-24KEc-CPU-definition.patch │ │ │ ├── 0001-virtio-zero-vq-inuse-in-virtio_reset.patch │ │ │ ├── 0002-fix-CVE-2016-7423.patch │ │ │ ├── 0003-fix-CVE-2016-7908.patch │ │ │ ├── 0004-fix-CVE-2016-7909.patch │ │ │ ├── Qemu-Arm-versatilepb-Add-memory-size-checking.patch │ │ │ ├── add-ptest-in-makefile.patch │ │ │ ├── configure-fix-Darwin-target-detection.patch │ │ │ ├── cpus.c-qemu_cpu_kick_thread_debugging.patch │ │ │ ├── disable-grabs.patch │ │ │ ├── exclude-some-arm-EABI-obsolete-syscalls.patch │ │ │ ├── fix-libcap-header-issue-on-some-distro.patch │ │ │ ├── no-valgrind.patch │ │ │ ├── pathlimit.patch │ │ │ ├── powerpc_rom.bin │ │ │ ├── qemu-2.5.0-cflags.patch │ │ │ ├── qemu-enlarge-env-entry-size.patch │ │ │ ├── run-ptest │ │ │ └── wacom.patch │ │ ├── qemu_2.7.0.bb │ │ └── qemuwrapper-cross_1.0.bb │ ├── quilt │ │ ├── quilt-native.inc │ │ ├── quilt-native_0.64.bb │ │ ├── quilt.inc │ │ ├── quilt │ │ │ ├── Makefile │ │ │ ├── aclocal.patch │ │ │ ├── gnu_patch_test_fix_target.patch │ │ │ ├── install.patch │ │ │ ├── run-ptest │ │ │ └── test.sh │ │ └── quilt_0.64.bb │ ├── remake │ │ ├── remake.inc │ │ ├── remake │ │ │ └── version-remake.texi.patch │ │ └── remake_4.1+dbg-1.1.bb │ ├── rpm │ │ ├── rpm │ │ │ ├── 0001-Disable-__sync_add_and_fetch_8-on-nios2.patch │ │ │ ├── 0001-define-EM_AARCH64.patch │ │ │ ├── 0001-rpm-Fix-build-on-musl.patch │ │ │ ├── 0001-system.h-query.c-support-nosignature.patch │ │ │ ├── 0001-using-poptParseArgvString-to-parse-the-_gpg_check_pa.patch │ │ │ ├── configure.ac-check-for-both-gpg2-and-gpg.patch │ │ │ ├── dbconvert.patch │ │ │ ├── debugedit-segv.patch │ │ │ ├── debugedit-valid-file-to-fix-segment-fault.patch │ │ │ ├── gcc6-stdlib.patch │ │ │ ├── header-include-fix.patch │ │ │ ├── makefile-am-exec-hook.patch │ │ │ ├── no-ldflags-in-pkgconfig.patch │ │ │ ├── perfile_rpmdeps.sh │ │ │ ├── popt-disable-auto-stack-protector.patch │ │ │ ├── python-rpm-rpmsense.patch │ │ │ ├── pythondeps.sh │ │ │ ├── rpm-atomic-ops.patch │ │ │ ├── rpm-autogen-force.patch │ │ │ ├── rpm-autogen.patch │ │ │ ├── rpm-canonarch.patch │ │ │ ├── rpm-check-rootpath-reasonableness.patch │ │ │ ├── rpm-db-reduce.patch │ │ │ ├── rpm-db5-or-db6.patch │ │ │ ├── rpm-db60.patch │ │ │ ├── rpm-db_buffer_small.patch │ │ │ ├── rpm-debug-platform.patch │ │ │ ├── rpm-disable-auto-stack-protector.patch │ │ │ ├── rpm-disable-blaketest.patch │ │ │ ├── rpm-ensure-rpm2cpio-call-rpm-relocation-code.patch │ │ │ ├── rpm-fileclass.patch │ │ │ ├── rpm-fix-logio-cp.patch │ │ │ ├── rpm-fix-lua-tests-compilation-failure.patch │ │ │ ├── rpm-fix-parseEmbedded.patch │ │ │ ├── rpm-gnu-atomic.patch │ │ │ ├── rpm-hardlink-segfault-fix.patch │ │ │ ├── rpm-keccak-sse-intrin.patch │ │ │ ├── rpm-lib-transaction.c-fix-file-conflicts-for-mips64-N32.patch │ │ │ ├── rpm-libsql-fix.patch │ │ │ ├── rpm-log-auto-rm.patch │ │ │ ├── rpm-lsb-compatibility.patch │ │ │ ├── rpm-lua.patch │ │ │ ├── rpm-macros.in-disable-external-key-server.patch │ │ │ ├── rpm-macros.patch │ │ │ ├── rpm-mongodb-sasl.patch │ │ │ ├── rpm-no-loopmsg.patch │ │ │ ├── rpm-no-perl-urpm.patch │ │ │ ├── rpm-opendb-before-verifyscript-to-avoid-null-point.patch │ │ │ ├── rpm-ossp-uuid.patch │ │ │ ├── rpm-packageorigin.patch │ │ │ ├── rpm-payload-use-hashed-inode.patch │ │ │ ├── rpm-pkgconfigdeps.patch │ │ │ ├── rpm-platform-file-fix.patch │ │ │ ├── rpm-platform.patch │ │ │ ├── rpm-platform2.patch │ │ │ ├── rpm-py-init.patch │ │ │ ├── rpm-python-AddErase.patch │ │ │ ├── rpm-python-restore-origin.patch │ │ │ ├── rpm-python-tagname.patch │ │ │ ├── rpm-realpath.patch │ │ │ ├── rpm-reloc-macros.patch │ │ │ ├── rpm-resolvedep.patch │ │ │ ├── rpm-rpmdb-grammar.patch │ │ │ ├── rpm-rpmfc.c-fix-for-N32-MIPS64.patch │ │ │ ├── rpm-rpmio-headers.patch │ │ │ ├── rpm-rpmpgp-popt.patch │ │ │ ├── rpm-scriptletexechelper.patch │ │ │ ├── rpm-showrc.patch │ │ │ ├── rpm-syck-fix-gram.patch │ │ │ ├── rpm-tag-generate-endian-conversion-fix.patch │ │ │ ├── rpm-tagname-type.patch │ │ │ ├── rpm-tools-mtree-LDFLAGS.patch │ │ │ ├── rpm-uuid-include.patch │ │ │ ├── rpm2cpio │ │ │ ├── rpmatch.patch │ │ │ ├── rpmdb-more-verbose-error-logging-in-rpmTempFile.patch │ │ │ ├── rpmdb-prevent-race-in-tmpdir-creation.patch │ │ │ ├── rpmdeps-oecore.patch │ │ │ ├── rpmqv.c-check-_gpg_passphrase-before-ask-for-input.patch │ │ │ ├── rpmqv_cc_b_gone.patch │ │ │ └── uclibc-support.patch │ │ ├── rpm_5.4.16.bb │ │ ├── rpmresolve │ │ │ └── rpmresolve.c │ │ └── rpmresolve_1.0.bb │ ├── rsync │ │ ├── files │ │ │ ├── makefile-no-rebuild.patch │ │ │ └── rsyncd.conf │ │ ├── rsync-2.6.9 │ │ │ ├── rsync-2.6.9-fname-obo.patch │ │ │ └── rsyncd.conf │ │ ├── rsync.inc │ │ ├── rsync_2.6.9.bb │ │ └── rsync_3.1.2.bb │ ├── ruby │ │ ├── ruby.inc │ │ ├── ruby │ │ │ ├── 0002-Obey-LDFLAGS-for-the-link-of-libruby.patch │ │ │ └── extmk.patch │ │ └── ruby_2.3.1.bb │ ├── run-postinsts │ │ ├── run-postinsts │ │ │ ├── run-postinsts │ │ │ ├── run-postinsts.init │ │ │ └── run-postinsts.service │ │ └── run-postinsts_1.0.bb │ ├── squashfs-tools │ │ ├── squashfs-tools │ │ │ ├── 0001-mksquashfs.c-get-inline-functions-work-with-C99.patch │ │ │ └── fix-compat.patch │ │ └── squashfs-tools_git.bb │ ├── strace │ │ ├── strace │ │ │ ├── 0001-Fix-build-when-using-non-glibc-libc-implementation-o.patch │ │ │ ├── Makefile-ptest.patch │ │ │ ├── disable-git-version-gen.patch │ │ │ ├── mips-SIGEMT.patch │ │ │ ├── more-robust-test-for-m32-mx32-compile-support.patch │ │ │ ├── run-ptest │ │ │ ├── update-gawk-paths.patch │ │ │ └── use-asm-sgidefs.h.patch │ │ └── strace_4.14.bb │ ├── subversion │ │ ├── subversion │ │ │ ├── 0001-Fix-libtool-name-in-configure.ac.patch │ │ │ ├── 0001-fix-svnadmin-create-fail-on-x86.patch │ │ │ ├── disable_macos.patch │ │ │ └── serf.m4-Regex-modified-to-allow-D-in-paths.patch │ │ └── subversion_1.9.4.bb │ ├── swig │ │ ├── swig.inc │ │ ├── swig │ │ │ ├── 0001-Use-proc-self-exe-for-swig-swiglib-on-non-Win32-plat.patch │ │ │ └── 0001-configure-use-pkg-config-for-pcre-detection.patch │ │ └── swig_3.0.10.bb │ ├── syslinux │ │ ├── syslinux │ │ │ ├── 0001-linux-syslinux-support-ext2-3-4-device.patch │ │ │ ├── 0002-linux-syslinux-implement-open_ext2_fs.patch │ │ │ ├── 0003-linux-syslinux-implement-install_to_ext2.patch │ │ │ ├── 0004-linux-syslinux-add-ext_file_read-and-ext_file_write.patch │ │ │ ├── 0005-linux-syslinux-implement-handle_adv_on_ext.patch │ │ │ ├── 0006-linux-syslinux-implement-write_to_ext-and-add-syslin.patch │ │ │ ├── 0007-linux-syslinux-implement-ext_construct_sectmap_fs.patch │ │ │ ├── 0008-libinstaller-syslinuxext-implement-syslinux_patch_bo.patch │ │ │ ├── 0009-linux-syslinux-implement-install_bootblock.patch │ │ │ ├── 0010-gcc46-compatibility.patch │ │ │ ├── 0011-mk-MMD-does-not-take-any-arguments.patch │ │ │ ├── syslinux-fix-parallel-building-issue.patch │ │ │ ├── syslinux-libupload-depend-lib.patch │ │ │ └── syslinux-remove-clean-script.patch │ │ └── syslinux_6.03.bb │ ├── systemd-bootchart │ │ └── systemd-bootchart_230.bb │ ├── tcf-agent │ │ ├── tcf-agent │ │ │ ├── 0001-canonicalize_file_name-is-specific-to-glibc.patch │ │ │ ├── fix_ranlib.patch │ │ │ ├── ldflags.patch │ │ │ ├── tcf-agent.init │ │ │ └── tcf-agent.service │ │ └── tcf-agent_git.bb │ ├── tcltk │ │ ├── tcl │ │ │ ├── alter-includedir.patch │ │ │ ├── fix_issue_with_old_distro_glibc.patch │ │ │ ├── fix_non_native_build_issue.patch │ │ │ ├── no_packages.patch │ │ │ ├── run-ptest │ │ │ ├── tcl-add-soname.patch │ │ │ └── tcl-remove-hardcoded-install-path.patch │ │ └── tcl_8.6.6.bb │ ├── unfs3 │ │ ├── unfs3 │ │ │ ├── alternate_rpc_ports.patch │ │ │ ├── fix_compile_warning.patch │ │ │ ├── fix_pid_race_parent_writes_child_pid.patch │ │ │ ├── relative_max_socket_path_len.patch │ │ │ ├── rename_fh_cache.patch │ │ │ ├── tcp_no_delay.patch │ │ │ └── unfs3_parallel_build.patch │ │ └── unfs3_0.9.22.r497.bb │ ├── unifdef │ │ └── unifdef_2.11.bb │ ├── vala │ │ ├── vala.inc │ │ ├── vala │ │ │ ├── 0001-git-version-gen-don-t-append-dirty-if-we-re-not-in-g.patch │ │ │ └── 0001-vapigen.m4-use-PKG_CONFIG_SYSROOT_DIR.patch │ │ └── vala_0.34.3.bb │ ├── valgrind │ │ ├── valgrind │ │ │ ├── 0001-Remove-tests-that-fail-to-build-on-some-PPC32-config.patch │ │ │ ├── 0001-fix-build-for-musl-targets.patch │ │ │ ├── 0002-remove-rpath.patch │ │ │ ├── 0004-Fix-out-of-tree-builds.patch │ │ │ ├── 0005-Modify-vg_test-wrapper-to-support-PTEST-formats.patch │ │ │ ├── Added-support-for-PPC-instructions-mfatbu-mfatbl.patch │ │ │ ├── avoid-neon-for-targets-which-don-t-support-it.patch │ │ │ ├── fixed-perl-path.patch │ │ │ ├── run-ptest │ │ │ └── use-appropriate-march-mcpu-mfpu-for-ARM-test-apps.patch │ │ └── valgrind_3.12.0.bb │ ├── xmlto │ │ ├── files │ │ │ └── catalog.xml │ │ ├── xmlto-0.0.28 │ │ │ └── configure.in-drop-the-test-of-xmllint-and-xsltproc.patch │ │ └── xmlto_0.0.28.bb │ ├── yasm │ │ └── yasm_1.3.0.bb │ └── zisofs-tools │ │ └── zisofs-tools-native_1.0.8.bb ├── recipes-extended │ ├── asciidoc │ │ └── asciidoc_8.6.9.bb │ ├── at │ │ ├── at │ │ │ ├── 0001-remove-glibc-assumption.patch │ │ │ ├── atd.init │ │ │ ├── atd.service │ │ │ ├── configure-add-enable-pam.patch │ │ │ ├── file_replacement_with_gplv2.patch │ │ │ ├── fix_parallel_build_error.patch │ │ │ ├── makefile-fix-parallel.patch │ │ │ ├── pam.conf.patch │ │ │ ├── posixtm.c │ │ │ └── posixtm.h │ │ └── at_3.1.20.bb │ ├── bash │ │ ├── bash-3.2.57 │ │ │ ├── build-tests.patch │ │ │ ├── dont-include-target-CFLAGS-in-host-LDFLAGS.patch │ │ │ ├── mkbuiltins_have_stringize.patch │ │ │ ├── run-ptest │ │ │ ├── string-format.patch │ │ │ └── test-output.patch │ │ ├── bash.inc │ │ ├── bash │ │ │ ├── 0001-help-fix-printf-format-security-warning.patch │ │ │ ├── build-tests.patch │ │ │ ├── execute_cmd.patch │ │ │ ├── fix-run-builtins.patch │ │ │ ├── fix-run-coproc-run-heredoc-run-execscript-run-test-f.patch │ │ │ ├── fix-run-intl.patch │ │ │ ├── mkbuiltins_have_stringize.patch │ │ │ ├── run-ptest │ │ │ └── test-output.patch │ │ ├── bash_3.2.57.bb │ │ └── bash_4.3.30.bb │ ├── bc │ │ ├── bc_1.06.bb │ │ └── files │ │ │ └── fix-segment-fault.patch │ ├── blktool │ │ ├── blktool │ │ │ ├── 0001-fix-typos-in-manpage.patch │ │ │ ├── 0002-fix-string-error.patch │ │ │ └── 0003-Fix-3-d-argument-for-BLKROSET-it-must-be-const-int.patch │ │ └── blktool_4-7.bb │ ├── byacc │ │ ├── byacc.inc │ │ ├── byacc │ │ │ └── byacc-open.patch │ │ └── byacc_20160606.bb │ ├── bzip2 │ │ ├── bzip2-1.0.6 │ │ │ ├── CVE-2016-3189.patch │ │ │ ├── Makefile.am │ │ │ ├── configure.ac │ │ │ ├── fix-bunzip2-qt-returns-0-for-corrupt-archives.patch │ │ │ └── run-ptest │ │ └── bzip2_1.0.6.bb │ ├── chkconfig │ │ ├── chkconfig-alternatives-native_1.3.59.bb │ │ ├── chkconfig │ │ │ └── replace_caddr_t.patch │ │ └── chkconfig_1.3.58.bb │ ├── cpio │ │ ├── cpio-2.12 │ │ │ ├── 0001-Fix-CVE-2015-1197.patch │ │ │ └── 0001-Unset-need_charset_alias-when-building-for-musl.patch │ │ ├── cpio-2.8 │ │ │ ├── avoid_heap_overflow.patch │ │ │ ├── fix-memory-overrun.patch │ │ │ ├── m4extensions.patch │ │ │ └── statdef.patch │ │ ├── cpio_2.12.bb │ │ ├── cpio_2.8.bb │ │ └── cpio_v2.inc │ ├── cracklib │ │ ├── cracklib │ │ │ ├── 0001-Apply-patch-to-fix-CVE-2016-6318.patch │ │ │ ├── 0001-packlib.c-support-dictionary-byte-order-dependent.patch │ │ │ └── 0002-craklib-fix-testnum-and-teststr-failed.patch │ │ └── cracklib_2.9.5.bb │ ├── cronie │ │ ├── cronie │ │ │ ├── crond.init │ │ │ ├── crond.service │ │ │ ├── crond_pam_config.patch │ │ │ └── crontab │ │ └── cronie_1.5.1.bb │ ├── cups │ │ ├── cups.inc │ │ ├── cups │ │ │ ├── 0001-don-t-try-to-run-generated-binaries.patch │ │ │ ├── cups_serverbin.patch │ │ │ └── use_echo_only_in_init.patch │ │ └── cups_2.1.4.bb │ ├── cwautomacros │ │ └── cwautomacros_20110201.bb │ ├── diffutils │ │ ├── diffutils-2.8.1 │ │ │ ├── diffutils_fix_for_automake-1.12.patch │ │ │ └── fix_gcc6.patch │ │ ├── diffutils-3.5 │ │ │ ├── 0001-Unset-need_charset_alias-when-building-for-musl.patch │ │ │ └── run-ptest │ │ ├── diffutils.inc │ │ ├── diffutils_2.8.1.bb │ │ └── diffutils_3.5.bb │ ├── ed │ │ ├── ed_0.5.bb │ │ └── ed_1.9.bb │ ├── ethtool │ │ ├── ethtool │ │ │ ├── avoid_parallel_tests.patch │ │ │ └── run-ptest │ │ └── ethtool_4.8.bb │ ├── findutils │ │ ├── findutils-4.2.31 │ │ │ ├── findutils-fix-doc-build-error.patch │ │ │ ├── findutils_fix_for_automake-1.12.patch │ │ │ └── gnulib-extension.patch │ │ ├── findutils.inc │ │ ├── findutils │ │ │ └── 0001-Unset-need_charset_alias-when-building-for-musl.patch │ │ ├── findutils_4.2.31.bb │ │ └── findutils_4.6.0.bb │ ├── foomatic │ │ ├── foomatic-filters-4.0.17 │ │ │ ├── CVE-2015-8327.patch │ │ │ └── CVE-2015-8560.patch │ │ └── foomatic-filters_4.0.17.bb │ ├── gawk │ │ ├── gawk-3.1.5 │ │ │ ├── 0001-gawk-fix-non-glibc-gcc-4-compilation.patch │ │ │ └── gawk-3.1.5_fix_for_automake-1.12.patch │ │ ├── gawk-4.1.4 │ │ │ ├── run-ptest │ │ │ └── test-arrayind1-Remove-hashbang-line.patch │ │ ├── gawk_3.1.5.bb │ │ └── gawk_4.1.4.bb │ ├── ghostscript │ │ ├── files │ │ │ └── do-not-check-local-libpng-source.patch │ │ ├── ghostscript │ │ │ ├── aarch64 │ │ │ │ └── objarch.h │ │ │ ├── arm │ │ │ │ └── objarch.h │ │ │ ├── armeb │ │ │ │ └── objarch.h │ │ │ ├── base-genht.c-add-a-preprocessor-define-to-allow-fope.patch │ │ │ ├── cups-no-gcrypt.patch │ │ │ ├── ghostscript-9.02-genarch.patch │ │ │ ├── ghostscript-9.02-prevent_recompiling.patch │ │ │ ├── ghostscript-9.15-parallel-make.patch │ │ │ ├── ghostscript-9.16-Werror-return-type.patch │ │ │ ├── ghostscript-native-fix-disable-system-libtiff.patch │ │ │ ├── i586 │ │ │ │ └── objarch.h │ │ │ ├── i686 │ │ │ ├── microblazeeb │ │ │ │ └── objarch.h │ │ │ ├── microblazeel │ │ │ │ └── objarch.h │ │ │ ├── mipsarchn32eb │ │ │ │ └── objarch.h │ │ │ ├── mipsarchn32el │ │ │ │ └── objarch.h │ │ │ ├── mipsarchn64eb │ │ │ │ └── objarch.h │ │ │ ├── mipsarchn64el │ │ │ │ └── objarch.h │ │ │ ├── mipsarcho32eb │ │ │ │ └── objarch.h │ │ │ ├── mipsarcho32el │ │ │ │ └── objarch.h │ │ │ ├── nios2 │ │ │ │ └── objarch.h │ │ │ ├── png_mak.patch │ │ │ ├── powerpc │ │ │ │ └── objarch.h │ │ │ ├── powerpc64 │ │ │ │ └── objarch.h │ │ │ └── x86-64 │ │ │ │ └── objarch.h │ │ └── ghostscript_9.19.bb │ ├── gperf │ │ ├── gperf.inc │ │ ├── gperf_3.0.3.bb │ │ └── gperf_3.0.4.bb │ ├── grep │ │ ├── grep-2.5.1a │ │ │ ├── Makevars │ │ │ ├── fix-for-texinfo-5.1.patch │ │ │ ├── fix64-int-to-pointer.patch │ │ │ ├── gettext.patch │ │ │ ├── grep-CVE-2012-5667.patch │ │ │ ├── grep-egrep-fgrep-Fix-LSB-NG-cases.patch │ │ │ ├── grep_fix_for_automake-1.12.patch │ │ │ └── uclibc-fix.patch │ │ ├── grep │ │ │ └── 0001-Unset-need_charset_alias-when-building-for-musl.patch │ │ ├── grep_2.26.bb │ │ └── grep_2.5.1a.bb │ ├── groff │ │ ├── groff-1.18.1.4 │ │ │ ├── fix-narrowing-conversion-error.patch │ │ │ ├── groff-1.18.1.4-fix-bindir.patch │ │ │ ├── groff-1.18.1.4-remove-mom.patch │ │ │ ├── man-local.patch │ │ │ └── mdoc-local.patch │ │ ├── groff-1.22.3 │ │ │ ├── 0001-Unset-need_charset_alias-when-building-for-musl.patch │ │ │ └── groff-1.22.2-correct-man.local-install-path.patch │ │ ├── groff_1.18.1.4.bb │ │ └── groff_1.22.3.bb │ ├── gzip │ │ ├── gzip-1.3.12 │ │ │ ├── dup-def-fix.patch │ │ │ └── m4-extensions-fix.patch │ │ ├── gzip-1.8 │ │ │ └── wrong-path-fix.patch │ │ ├── gzip.inc │ │ ├── gzip_1.3.12.bb │ │ └── gzip_1.8.bb │ ├── hdparm │ │ └── hdparm_9.48.bb │ ├── images │ │ ├── core-image-full-cmdline.bb │ │ ├── core-image-kernel-dev.bb │ │ ├── core-image-lsb-dev.bb │ │ ├── core-image-lsb-sdk.bb │ │ ├── core-image-lsb.bb │ │ ├── core-image-testmaster-initramfs.bb │ │ └── core-image-testmaster.bb │ ├── iptables │ │ ├── iptables │ │ │ ├── 0001-configure-Add-option-to-enable-disable-libnfnetlink.patch │ │ │ ├── 0001-fix-build-with-musl.patch │ │ │ ├── 0002-configure.ac-only-check-conntrack-when-libnfnetlink-enabled.patch │ │ │ └── types.h-add-defines-that-are-required-for-if_packet.patch │ │ └── iptables_1.6.0.bb │ ├── iputils │ │ ├── files │ │ │ ├── 0001-Fix-header-inclusion-for-musl.patch │ │ │ ├── 0001-Intialize-struct-elements-by-name.patch │ │ │ ├── debian │ │ │ │ ├── targets.diff │ │ │ │ └── use_gethostbyname2.diff │ │ │ └── nsgmls-path-fix.patch │ │ └── iputils_s20151218.bb │ ├── less │ │ └── less_481.bb │ ├── libaio │ │ ├── libaio │ │ │ ├── 00_arches.patch │ │ │ ├── destdir.patch │ │ │ ├── generic-arch-dectection-for-padding-defines.patch │ │ │ ├── libaio_fix_for_mips_syscalls.patch │ │ │ ├── libaio_fix_for_x32.patch │ │ │ └── system-linkage.patch │ │ └── libaio_0.3.110.bb │ ├── libarchive │ │ ├── files │ │ │ └── non-recursive-extract-and-list.patch │ │ └── libarchive_3.2.2.bb │ ├── libidn │ │ ├── libidn │ │ │ ├── 0001-idn-fix-printf-format-security-warnings.patch │ │ │ ├── avoid_AM_PROG_MKDIR_P_warning_error_with_automake_1.12.patch │ │ │ ├── dont-depend-on-help2man.patch │ │ │ └── libidn_fix_for_automake-1.12.patch │ │ ├── libidn_0.6.14.bb │ │ └── libidn_1.33.bb │ ├── libsolv │ │ ├── libsolv │ │ │ └── 0001-Add-fallback-fopencookie-implementation.patch │ │ └── libsolv_0.6.24.bb │ ├── libtirpc │ │ ├── libtirpc │ │ │ ├── 0001-Add-missing-rwlock_unlocks-in-xprt_register.patch │ │ │ ├── Use-netbsd-queue.h.patch │ │ │ ├── libtirpc-0.2.1-fortify.patch │ │ │ └── remove-des-functionality.patch │ │ └── libtirpc_1.0.1.bb │ ├── libuser │ │ ├── libuser │ │ │ ├── 0001-Check-for-issetugid.patch │ │ │ ├── 0001-modules-files.c-parse_field-fix-string-formating-in-.patch │ │ │ └── 0002-remove-unused-execinfo.h.patch │ │ └── libuser_0.62.bb │ ├── lighttpd │ │ ├── lighttpd │ │ │ ├── 0001-Use-pkg-config-for-pcre-dependency-instead-of-config.patch │ │ │ ├── index.html.lighttpd │ │ │ ├── lighttpd │ │ │ ├── lighttpd.conf │ │ │ └── lighttpd.service │ │ └── lighttpd_1.4.43.bb │ ├── logrotate │ │ ├── logrotate │ │ │ ├── act-as-mv-when-rotate.patch │ │ │ ├── disable-check-different-filesystems.patch │ │ │ └── update-the-manual.patch │ │ └── logrotate_3.9.1.bb │ ├── lsb │ │ ├── lsb │ │ │ ├── init-functions │ │ │ ├── lsb_killproc │ │ │ ├── lsb_log_message │ │ │ ├── lsb_pidofproc │ │ │ └── lsb_start_daemon │ │ ├── lsb_4.1.bb │ │ ├── lsbinitscripts │ │ │ ├── 0001-functions-avoid-exit-1-which-causes-init-scripts-to-.patch │ │ │ └── functions.patch │ │ ├── lsbinitscripts_9.68.bb │ │ ├── lsbtest │ │ │ ├── LSB_Test.sh │ │ │ ├── packages_list │ │ │ └── session │ │ └── lsbtest_1.0.bb │ ├── lsof │ │ └── lsof_4.89.bb │ ├── ltp │ │ ├── ltp │ │ │ ├── 0001-ltp-Don-t-link-against-libfl.patch │ │ │ ├── 0001-testcases-network-nfsv4-acl-acl1.c-Security-fix-on-s.patch │ │ │ ├── 0002-Add-knob-to-control-whether-numa-support-should-be-c.patch │ │ │ ├── 0003-Add-knob-to-control-tirpc-support.patch │ │ │ ├── 0004-build-Add-option-to-select-libc-implementation.patch │ │ │ ├── 0005-kernel-controllers-Link-with-libfts-explicitly-on-mu.patch │ │ │ ├── 0006-sendfile-Use-off64_t-instead-of-__off64_t.patch │ │ │ ├── 0007-replace-SIGCLD-with-SIGCHLD.patch │ │ │ ├── 0008-Check-if-__GLIBC_PREREQ-is-defined-before-using-it.patch │ │ │ ├── 0009-Guard-error.h-with-__GLIBC__.patch │ │ │ ├── 0010-replace-__BEGIN_DECLS-and-__END_DECLS.patch │ │ │ ├── 0011-Rename-sigset-variable-to-sigset1.patch │ │ │ ├── 0012-fsstress.c-Replace-__int64_t-with-int64_t.patch │ │ │ ├── 0013-include-fcntl.h-for-getting-O_-definitions.patch │ │ │ ├── 0014-hyperthreading-Include-sys-types.h-for-pid_t-definit.patch │ │ │ ├── 0015-mincore01-Rename-PAGESIZE-to-pagesize.patch │ │ │ ├── 0016-ustat-Change-header-from-ustat.h-to-sys-ustat.h.patch │ │ │ ├── 0017-replace-sigval_t-with-union-sigval.patch │ │ │ ├── 0018-guard-mallocopt-with-__GLIBC__.patch │ │ │ ├── 0019-tomoyo-Replace-canonicalize_file_name-with-realpath.patch │ │ │ ├── 0020-getdents-define-getdents-getdents64-only-for-glibc.patch │ │ │ ├── 0021-Define-_GNU_SOURCE-for-MREMAP_MAYMOVE-definition.patch │ │ │ ├── 0022-include-sys-types.h.patch │ │ │ ├── 0023-ptrace-Use-int-instead-of-enum-__ptrace_request.patch │ │ │ ├── 0024-rt_sigaction-rt_sigprocmark-Define-_GNU_SOURCE.patch │ │ │ ├── 0025-mc_gethost-include-sys-types.h.patch │ │ │ ├── 0026-crash01-Define-_GNU_SOURCE.patch │ │ │ ├── 0027-sysconf01-Use-_SC_2_C_VERSION-conditionally.patch │ │ │ ├── 0028-rt_sigaction.h-Use-sighandler_t-instead-of-__sighand.patch │ │ │ ├── 0029-trace_shed-Fix-build-with-musl.patch │ │ │ ├── 0030-lib-Use-PTHREAD_MUTEX_RECURSIVE-in-place-of-PTHREAD_.patch │ │ │ ├── 0031-vma03-fix-page-size-offset-as-per-page-size-alignmen.patch │ │ │ ├── 0032-regen.sh-Include-asm-unistd.h-explicitly.patch │ │ │ ├── 0033-shmat1-Cover-GNU-specific-code-under-__USE_GNU.patch │ │ │ ├── 0034-periodic_output.patch │ │ │ └── 0035-fix-test_proc_kill-hang.patch │ │ └── ltp_20160126.bb │ ├── mailx │ │ ├── files │ │ │ ├── 0001-Don-t-reuse-weak-symbol-optopt-to-fix-FTBFS-on-mips.patch │ │ │ ├── 0002-Patched-out-SSL2-support-since-it-is-no-longer-suppo.patch │ │ │ ├── 0003-Fixed-Lintian-warning-warning-macro-N-not-defined.patch │ │ │ ├── 0011-outof-Introduce-expandaddr-flag.patch │ │ │ ├── 0012-unpack-Disable-option-processing-for-email-addresses.patch │ │ │ ├── 0013-fio.c-Unconditionally-require-wordexp-support.patch │ │ │ ├── 0014-globname-Invoke-wordexp-with-WRDE_NOCMD.patch │ │ │ ├── 0015-usr-sbin-sendmail.patch │ │ │ └── explicitly.disable.krb5.support.patch │ │ └── mailx_12.5-5.bb │ ├── man-pages │ │ └── man-pages_4.08.bb │ ├── man │ │ ├── man │ │ │ ├── configure_sed.patch │ │ │ ├── man-1.5g-nonrootbuild.patch │ │ │ ├── man-1.5h1-gencat.patch │ │ │ ├── man-1.5h1-make.patch │ │ │ ├── man-1.5i2-initial.patch │ │ │ ├── man-1.5i2-newline.patch │ │ │ ├── man-1.5i2-overflow.patch │ │ │ ├── man-1.5j-i18n.patch │ │ │ ├── man-1.5j-nocache.patch │ │ │ ├── man-1.5j-utf8.patch │ │ │ ├── man-1.5k-confpath.patch │ │ │ ├── man-1.5k-nonascii.patch │ │ │ ├── man-1.5k-sofix.patch │ │ │ ├── man-1.5m2-bug11621.patch │ │ │ ├── man-1.5m2-buildroot.patch │ │ │ ├── man-1.5m2-no-color-for-printing.patch │ │ │ ├── man-1.5m2-sigpipe.patch │ │ │ ├── man-1.6e-i18n_whatis.patch │ │ │ ├── man-1.6e-mandirs.patch │ │ │ ├── man-1.6e-new_sections.patch │ │ │ ├── man-1.6e-ro_usr.patch │ │ │ ├── man-1.6e-security.patch │ │ │ ├── man-1.6e-use_i18n_vars_in_a_std_way.patch │ │ │ ├── man-1.6e-whatis2.patch │ │ │ ├── man-1.6g-compile-warnings.patch │ │ │ ├── man-1.6g-configure.patch │ │ │ ├── man-1.6g-parallel.patch │ │ │ ├── man-1.6g-whatis3.patch │ │ │ ├── man.1.gz │ │ │ ├── man.7.gz │ │ │ ├── man.conf │ │ │ └── manpath.5.gz │ │ └── man_1.6g.bb │ ├── mc │ │ ├── mc │ │ │ └── mc-CTRL.patch │ │ ├── mc_4.7.5.2.bb │ │ └── mc_4.8.18.bb │ ├── mdadm │ │ ├── files │ │ │ ├── 0001-Fix-some-type-comparison-problems.patch │ │ │ ├── 0001-Fix-the-path-of-corosync-and-dlm-header-files-check.patch │ │ │ ├── 0001-Fix-typo-in-comparision.patch │ │ │ ├── 0001-mdadm.h-Undefine-dprintf-before-redefining.patch │ │ │ ├── 0001-mdadm.h-bswap-is-already-defined-in-uclibc.patch │ │ │ ├── 0001-raid6check-Fix-if-else-indentation.patch │ │ │ ├── 0001-util.c-include-poll.h-instead-of-sys-poll.h.patch │ │ │ ├── gcc-4.9.patch │ │ │ ├── mdadm-3.2.2_fix_for_x32.patch │ │ │ ├── mdadm-3.3.2_x32_abi_time_t.patch │ │ │ ├── mdadm-fix-ptest-build-errors.patch │ │ │ └── run-ptest │ │ └── mdadm_3.4.bb │ ├── mingetty │ │ └── mingetty_1.08.bb │ ├── minicom │ │ ├── minicom │ │ │ ├── 0001-Fix-build-issus-surfaced-due-to-musl.patch │ │ │ ├── 0001-fix-minicom-h-v-return-value-is-not-0.patch │ │ │ └── allow.to.disable.lockdev.patch │ │ └── minicom_2.7.bb │ ├── mktemp │ │ ├── files │ │ │ ├── disable-strip.patch │ │ │ └── fix-parallel-make.patch │ │ └── mktemp_1.7.bb │ ├── msmtp │ │ └── msmtp_1.6.6.bb │ ├── net-tools │ │ ├── net-tools │ │ │ ├── 0001-lib-inet6.c-INET6_rresolve-various-fixes.patch │ │ │ ├── ifconfig-interface-0-del-IP-will-remove-the-aliased-.patch │ │ │ ├── musl-fixes.patch │ │ │ ├── net-tools-1.60-sctp1.patch │ │ │ ├── net-tools-1.60-sctp2-quiet.patch │ │ │ ├── net-tools-1.60-sctp3-addrs.patch │ │ │ ├── net-tools-config.h │ │ │ ├── net-tools-config.make │ │ │ └── net-tools-fix-building-with-linux-4.8.patch │ │ └── net-tools_1.60-26.bb │ ├── newt │ │ ├── files │ │ │ ├── 0001-detect-gold-as-GNU-linker-too.patch │ │ │ ├── Makefile.in-Add-tinfo-library-to-the-linking-librari.patch │ │ │ ├── cross_ar.patch │ │ │ ├── fix_SHAREDDIR.patch │ │ │ └── pie-flags.patch │ │ ├── libnewt-python_0.52.19.bb │ │ └── libnewt_0.52.19.bb │ ├── packagegroups │ │ ├── packagegroup-core-full-cmdline.bb │ │ └── packagegroup-core-lsb.bb │ ├── pam │ │ ├── libpam │ │ │ ├── 0001-Add-support-for-defining-missing-funcitonality.patch │ │ │ ├── 99_pam │ │ │ ├── crypt_configure.patch │ │ │ ├── fixsepbuild.patch │ │ │ ├── include_paths_header.patch │ │ │ ├── libpam-xtests-remove-bash-dependency.patch │ │ │ ├── libpam-xtests.patch │ │ │ ├── pam-security-abstract-securetty-handling.patch │ │ │ ├── pam-unix-nullok-secure.patch │ │ │ ├── pam.d │ │ │ │ ├── common-account │ │ │ │ ├── common-auth │ │ │ │ ├── common-password │ │ │ │ ├── common-session │ │ │ │ ├── common-session-noninteractive │ │ │ │ └── other │ │ │ └── use-utmpx.patch │ │ └── libpam_1.3.0.bb │ ├── parted │ │ ├── files │ │ │ ├── 0001-Include-fcntl.h-in-platform_defs.h.patch │ │ │ ├── 0001-Unset-need_charset_alias-when-building-for-musl.patch │ │ │ ├── Makefile │ │ │ ├── fix-compile-failure-while-dis.patch │ │ │ ├── fix-doc-mandir.patch │ │ │ ├── no_check.patch │ │ │ ├── run-ptest │ │ │ └── syscalls.patch │ │ └── parted_3.2.bb │ ├── pax │ │ ├── pax │ │ │ ├── 0001-Fix-build-with-musl.patch │ │ │ ├── 0001-use-strtoll-instead-of-strtoq.patch │ │ │ ├── fix_for_compile_with_gcc-4.6.0.patch │ │ │ └── pax-3.4_fix_for_x32.patch │ │ └── pax_3.4.bb │ ├── pbzip2 │ │ └── pbzip2_1.1.13.bb │ ├── perl │ │ ├── libconvert-asn1-perl_0.27.bb │ │ ├── libtimedate-perl_2.30.bb │ │ ├── libxml-namespacesupport-perl_1.11.bb │ │ ├── libxml-sax-base-perl_1.08.bb │ │ └── libxml-sax-perl_0.99.bb │ ├── pigz │ │ ├── pigz.inc │ │ └── pigz_2.3.4.bb │ ├── pixz │ │ ├── pixz │ │ │ ├── 0001-configure-Detect-headers-before-using-them.patch │ │ │ ├── 0002-endian-Use-macro-bswap_64-instead-of-__bswap_64.patch │ │ │ └── 936d8068ae19d95260d3058f41dd6cf718101cd6.patch │ │ └── pixz_1.0.6.bb │ ├── procps │ │ ├── procps │ │ │ └── sysctl.conf │ │ └── procps_3.3.12.bb │ ├── psmisc │ │ ├── files │ │ │ ├── 0001-Typo-in-fuser-makes-M-on-all-the-time.patch │ │ │ └── 0002-Include-limits.h-for-PATH_MAX.patch │ │ ├── psmisc.inc │ │ ├── psmisc │ │ │ └── 0001-Use-UINTPTR_MAX-instead-of-__WORDSIZE.patch │ │ └── psmisc_22.21.bb │ ├── quota │ │ ├── quota │ │ │ ├── 0001-Do-not-accidentaly-override-commandline-passed-CFLAG.patch │ │ │ ├── 0001-Fix-build-with-disabled-ldap.patch │ │ │ ├── 0001-Use-NGROUPS_MAX-instead-of-NGROUPS.patch │ │ │ ├── 0002-Allow-building-on-systems-that-do-not-have-rpc-heade.patch │ │ │ ├── 0003-Don-t-build-rpc.rquotad-when-disable-rpc-was-request.patch │ │ │ ├── 0004-Fix-warnings-due-to-missing-stdlib.h.patch │ │ │ ├── fcntl.patch │ │ │ ├── remove_non_posix_types.patch │ │ │ └── replace_getrpcbynumber_r.patch │ │ └── quota_4.03.bb │ ├── rpcbind │ │ ├── rpcbind │ │ │ ├── 0001-Avoid-use-of-glibc-sys-cdefs.h-header.patch │ │ │ ├── 0001-handle_reply-Don-t-use-the-xp_auth-pointer-directly.patch │ │ │ ├── cve-2015-7236.patch │ │ │ ├── init.d │ │ │ ├── musl-sunrpc.patch │ │ │ ├── remove-sys-queue.patch │ │ │ ├── rpcbind.conf │ │ │ ├── rpcbind.service │ │ │ └── rpcbind.socket │ │ └── rpcbind_0.2.3.bb │ ├── screen │ │ ├── screen │ │ │ ├── 0001-fix-for-multijob-build.patch │ │ │ ├── 0002-comm.h-now-depends-on-term.h.patch │ │ │ ├── Avoid-mis-identifying-systems-as-SVR4.patch │ │ │ ├── Provide-cross-compile-alternatives-for-AC_TRY_RUN.patch │ │ │ ├── Remove-redundant-compiler-sanity-checks.patch │ │ │ ├── Skip-host-file-system-checks-when-cross-compiling.patch │ │ │ ├── fix-parallel-make.patch │ │ │ └── screen.pam │ │ └── screen_4.4.0.bb │ ├── sed │ │ ├── sed-4.1.2 │ │ │ ├── Makevars │ │ │ ├── fix_return_type.patch │ │ │ └── sed-4.1.2_fix_for_automake-1.12.patch │ │ ├── sed-4.2.2 │ │ │ ├── 0001-Unset-need_charset_alias-when-building-for-musl.patch │ │ │ ├── run-ptest │ │ │ └── sed-add-ptest.patch │ │ ├── sed_4.1.2.bb │ │ └── sed_4.2.2.bb │ ├── shadow │ │ ├── files │ │ │ ├── 0001-Disable-use-of-syslog-for-sysroot.patch │ │ │ ├── 0001-Do-not-read-login.defs-before-doing-chroot.patch │ │ │ ├── 0001-useradd.c-create-parent-directories-when-necessary.patch │ │ │ ├── allow-for-setting-password-in-clear-text.patch │ │ │ ├── check_size_of_uid_t_and_gid_t_using_AC_CHECK_SIZEOF.patch │ │ │ ├── commonio.c-fix-unexpected-open-failure-in-chroot-env.patch │ │ │ ├── fix-installation-failure-with-subids-disabled.patch │ │ │ ├── login.defs_shadow-sysroot │ │ │ ├── login_defs_pam.sed │ │ │ ├── pam.d │ │ │ │ ├── chfn │ │ │ │ ├── chpasswd │ │ │ │ ├── chsh │ │ │ │ ├── login │ │ │ │ ├── newusers │ │ │ │ ├── passwd │ │ │ │ └── su │ │ │ ├── securetty │ │ │ ├── shadow-4.1.3-dots-in-usernames.patch │ │ │ ├── shadow-relaxed-usernames.patch │ │ │ ├── shadow-update-pam-conf.patch │ │ │ └── usermod-fix-compilation-failure-with-subids-disabled.patch │ │ ├── shadow-securetty_4.2.1.bb │ │ ├── shadow-sysroot_4.2.1.bb │ │ ├── shadow.inc │ │ └── shadow_4.2.1.bb │ ├── slang │ │ ├── slang │ │ │ ├── 0001-Fix-error-conflicting-types-for-posix_close.patch │ │ │ ├── fix-check-pcre.patch │ │ │ ├── no-x.patch │ │ │ ├── rpathfix.patch │ │ │ └── slang-fix-the-iconv-existence-checking.patch │ │ └── slang_2.3.0.bb │ ├── stat │ │ ├── stat-3.3 │ │ │ ├── fix-error-return.patch │ │ │ └── fix-security-format.patch │ │ └── stat_3.3.bb │ ├── stress │ │ ├── files │ │ │ └── texinfo.patch │ │ └── stress_1.0.4.bb │ ├── sudo │ │ ├── files │ │ │ └── sudo.pam │ │ ├── sudo.inc │ │ ├── sudo │ │ │ └── 0001-Include-sys-types.h-for-id_t-definition.patch │ │ └── sudo_1.8.17p1.bb │ ├── sysklogd │ │ ├── files │ │ │ ├── 0001-Fix-build-with-musl.patch │ │ │ ├── no-strip-install.patch │ │ │ ├── no-vectorization.patch │ │ │ ├── sysklogd │ │ │ └── syslog.conf │ │ ├── sysklogd.inc │ │ └── sysklogd_1.5.1.bb │ ├── sysstat │ │ ├── sysstat.inc │ │ ├── sysstat │ │ │ ├── 0001-Include-needed-headers-explicitly.patch │ │ │ ├── 99_sysstat │ │ │ └── sysstat.service │ │ └── sysstat_11.4.0.bb │ ├── tar │ │ ├── tar-1.17 │ │ │ ├── avoid_heap_overflow.patch │ │ │ ├── gcc43build.patch │ │ │ └── m4extensions.patch │ │ ├── tar.inc │ │ ├── tar │ │ │ ├── musl_dirent.patch │ │ │ └── remove-gets.patch │ │ ├── tar_1.17.bb │ │ └── tar_1.29.bb │ ├── tcp-wrappers │ │ ├── tcp-wrappers-7.6 │ │ │ ├── 00_man_quoting.diff │ │ │ ├── 01_man_portability.patch │ │ │ ├── 05_wildcard_matching.patch │ │ │ ├── 06_fix_gethostbyname.patch │ │ │ ├── 10_usagi-ipv6.patch │ │ │ ├── 11_tcpd_blacklist.patch │ │ │ ├── 11_usagi_fix.patch │ │ │ ├── 12_makefile_config.patch │ │ │ ├── 13_shlib_weaksym.patch │ │ │ ├── 14_cidr_support.patch │ │ │ ├── 15_match_clarify.patch │ │ │ ├── expand_remote_port.patch │ │ │ ├── have_strerror.patch │ │ │ ├── ldflags.patch │ │ │ ├── makefile-fix-parallel.patch │ │ │ ├── man_fromhost.patch │ │ │ ├── musl-decls.patch │ │ │ ├── rename_strings_variable.patch │ │ │ ├── restore_sigalarm.patch │ │ │ ├── rfc931.diff │ │ │ ├── safe_finger.8 │ │ │ ├── safe_finger.patch │ │ │ ├── sig_fix.patch │ │ │ ├── siglongjmp.patch │ │ │ ├── socklen_t.patch │ │ │ ├── tcpdchk_libwrapped.patch │ │ │ └── try-from.8 │ │ └── tcp-wrappers_7.6.bb │ ├── texi2html │ │ ├── files │ │ │ └── 0001-Allow-compiling-out-of-source.patch │ │ └── texi2html_5.0.bb │ ├── texinfo-dummy-native │ │ ├── texinfo-dummy-native.bb │ │ └── texinfo-dummy │ │ │ ├── COPYING │ │ │ └── template.py │ ├── texinfo │ │ ├── texinfo-4.8 │ │ │ ├── check-locale-h.patch │ │ │ ├── do-compile-native-tools.patch │ │ │ └── using-native-makeinfo.patch │ │ ├── texinfo │ │ │ ├── 0001-Unset-need_charset_alias-when-building-for-musl.patch │ │ │ ├── disable-native-tools.patch │ │ │ ├── dont-depend-on-help2man.patch │ │ │ ├── link-zip.patch │ │ │ ├── texinfo-4.12-zlib.patch │ │ │ └── use_host_makedoc.patch │ │ ├── texinfo_4.8.bb │ │ └── texinfo_6.0.bb │ ├── time │ │ ├── time-1.7 │ │ │ └── debian.patch │ │ ├── time.inc │ │ └── time_1.7.bb │ ├── tzcode │ │ └── tzcode-native_2016i.bb │ ├── tzdata │ │ └── tzdata_2016i.bb │ ├── unzip │ │ ├── unzip │ │ │ ├── 06-unzip60-alt-iconv-utf8_CVE-2015-1315.patch │ │ │ ├── 09-cve-2014-8139-crc-overflow.patch │ │ │ ├── 10-cve-2014-8140-test-compr-eb.patch │ │ │ ├── 11-cve-2014-8141-getzip64data.patch │ │ │ ├── CVE-2015-7696.patch │ │ │ ├── CVE-2015-7697.patch │ │ │ ├── avoid-strip.patch │ │ │ ├── cve-2014-9636.patch │ │ │ ├── define-ldflags.patch │ │ │ └── fix-security-format.patch │ │ └── unzip_6.0.bb │ ├── watchdog │ │ ├── watchdog-config.bb │ │ ├── watchdog-config │ │ │ ├── watchdog.conf │ │ │ └── watchdog.default │ │ ├── watchdog │ │ │ ├── 0001-Include-linux-param.h-for-EXEC_PAGESIZE-definition.patch │ │ │ ├── watchdog-conf.patch │ │ │ ├── watchdog-init.patch │ │ │ └── wd_keepalive.init │ │ └── watchdog_5.15.bb │ ├── wget │ │ ├── wget.inc │ │ ├── wget │ │ │ └── 0001-Unset-need_charset_alias-when-building-for-musl.patch │ │ └── wget_1.18.bb │ ├── which │ │ ├── which-2.18 │ │ │ ├── automake-foreign.patch │ │ │ └── fix_name_conflict_group_member.patch │ │ ├── which-2.21 │ │ │ └── automake.patch │ │ ├── which_2.18.bb │ │ └── which_2.21.bb │ ├── xdg-utils │ │ ├── xdg-utils │ │ │ ├── 0001-Don-t-build-the-in-script-manual.patch │ │ │ └── 0001-Reinstate-xdg-terminal.patch │ │ └── xdg-utils_1.1.1.bb │ ├── xinetd │ │ ├── xinetd │ │ │ ├── 0001-configure-Use-HAVE_SYS_RESOURCE_H-to-guard-sys-resou.patch │ │ │ ├── Disable-services-from-inetd.conf-if-a-service-with-t.patch │ │ │ ├── Various-fixes-from-the-previous-maintainer.patch │ │ │ ├── xinetd-CVE-2013-4342.patch │ │ │ ├── xinetd-should-be-able-to-listen-on-IPv6-even-in-ine.patch │ │ │ ├── xinetd.conf │ │ │ ├── xinetd.default │ │ │ ├── xinetd.init │ │ │ └── xinetd.service │ │ └── xinetd_2.3.15.bb │ ├── xz │ │ └── xz_5.2.2.bb │ └── zip │ │ ├── zip-3.0 │ │ └── fix-security-format.patch │ │ └── zip_3.0.bb ├── recipes-gnome │ ├── epiphany │ │ ├── epiphany_3.22.3.bb │ │ └── files │ │ │ └── 0001-yelp.m4-drop-the-check-for-itstool.patch │ ├── gcr │ │ └── gcr_3.20.0.bb │ ├── gdk-pixbuf │ │ ├── gdk-pixbuf │ │ │ ├── extending-libinstall-dependencies.patch │ │ │ ├── fatal-loader.patch │ │ │ ├── hardcoded_libtool.patch │ │ │ └── run-ptest │ │ └── gdk-pixbuf_2.36.0.bb │ ├── gnome-desktop │ │ └── gnome-desktop3_3.22.2.bb │ ├── gnome │ │ ├── adwaita-icon-theme_3.22.0.bb │ │ ├── gconf │ │ │ ├── remove_plus_from_invalid_characters_list.patch │ │ │ └── unable-connect-dbus.patch │ │ ├── gconf_3.2.6.bb │ │ ├── gnome-common_3.18.0.bb │ │ ├── gnome-doc-utils │ │ │ └── 0001-glib-gettext.m4-Update-AM_GLIB_GNU_GETTEXT-to-match-.patch │ │ ├── gnome-themes-standard_3.22.2.bb │ │ ├── libart-lgpl │ │ │ └── libart_lgpl-2.3.21-crosscompile.patch │ │ └── libart-lgpl_2.3.21.bb │ ├── gobject-introspection │ │ ├── gobject-introspection │ │ │ ├── 0001-Revert-an-incomplete-upstream-attempt-at-cross-compi.patch │ │ │ ├── 0002-configure.ac-add-host-gi-gi-cross-wrapper-gi-ldd-wra.patch │ │ │ ├── 0003-giscanner-add-use-binary-wrapper-option.patch │ │ │ ├── 0004-giscanner-add-a-use-ldd-wrapper-option.patch │ │ │ └── 0005-Prefix-pkg-config-paths-with-PKG_CONFIG_SYSROOT_DIR-.patch │ │ └── gobject-introspection_1.50.0.bb │ ├── gsettings-desktop-schemas │ │ └── gsettings-desktop-schemas_3.20.0.bb │ ├── gtk+ │ │ ├── gtk+.inc │ │ ├── gtk+ │ │ │ ├── doc-fixes.patch │ │ │ ├── hardcoded_libtool.patch │ │ │ ├── strict-prototypes.patch │ │ │ ├── toggle-font.diff │ │ │ └── xsettings.patch │ │ ├── gtk+3.inc │ │ ├── gtk+3 │ │ │ ├── 0001-Hardcoded-libtool.patch │ │ │ ├── 0002-Do-not-try-to-initialize-GL-without-libGL.patch │ │ │ ├── 0003-Add-disable-opengl-configure-option.patch │ │ │ └── 0004-configure.ac-Fix-wayland-protocols-path.patch │ │ ├── gtk+3_3.22.1.bb │ │ ├── gtk+_2.24.31.bb │ │ ├── gtk-icon-utils-native_3.22.1.bb │ │ └── gtk-icon-utils │ │ │ └── Remove-Gdk-dependency-from-gtk-encode-symbolic-svg.patch │ ├── gtk-doc │ │ ├── files │ │ │ ├── 0001-Do-not-error-out-if-perl-is-not-found-or-its-version.patch │ │ │ ├── 0001-Do-not-error-out-if-xsltproc-is-not-found.patch │ │ │ ├── 0001-Do-not-hardocode-paths-to-perl-python-in-scripts.patch │ │ │ └── pkg-config-native.patch │ │ └── gtk-doc_1.25.bb │ ├── hicolor-icon-theme │ │ └── hicolor-icon-theme_0.15.bb │ ├── json-glib │ │ └── json-glib_1.2.2.bb │ ├── libgudev │ │ └── libgudev_230.bb │ ├── libnotify │ │ └── libnotify_0.7.6.bb │ ├── librsvg │ │ ├── librsvg │ │ │ └── gtk-option.patch │ │ └── librsvg_2.40.16.bb │ └── libsecret │ │ └── libsecret_0.18.5.bb ├── recipes-graphics │ ├── builder │ │ ├── builder_0.1.bb │ │ └── files │ │ │ └── builder_session.sh │ ├── cairo │ │ ├── cairo-fpu.inc │ │ ├── cairo.inc │ │ └── cairo_1.14.6.bb │ ├── cantarell-fonts │ │ └── cantarell-fonts_git.bb │ ├── clutter │ │ ├── clutter-1.0.inc │ │ ├── clutter-1.0 │ │ │ ├── 0001-Remove-clutter.types-as-it-is-build-configuration-sp.patch │ │ │ ├── install-examples.patch │ │ │ ├── run-installed-tests-with-tap-output.patch │ │ │ └── run-ptest │ │ ├── clutter-1.0_1.26.0.bb │ │ ├── clutter-gst-3.0.inc │ │ ├── clutter-gst-3.0 │ │ │ └── 0001-Install-example-binary-needed-for-core-image-clutter.patch │ │ ├── clutter-gst-3.0_3.0.20.bb │ │ ├── clutter-gtk-1.0.inc │ │ └── clutter-gtk-1.0_1.8.2.bb │ ├── cogl │ │ ├── cogl-1.0.inc │ │ ├── cogl-1.0 │ │ │ └── test-backface-culling.c-fix-may-be-used-uninitialize.patch │ │ └── cogl-1.0_1.22.0.bb │ ├── drm │ │ ├── libdrm │ │ │ ├── 0001-configure.ac-Allow-explicit-enabling-of-cunit-tests.patch │ │ │ ├── fix_O_CLOEXEC_undeclared.patch │ │ │ └── installtests.patch │ │ └── libdrm_2.4.73.bb │ ├── eglinfo │ │ ├── eglinfo-fb_1.0.0.bb │ │ ├── eglinfo-x11_1.0.0.bb │ │ ├── eglinfo.inc │ │ └── files │ │ │ └── 0001-Add-STAGING_INCDIR-to-searchpath-for-egl-headers.patch │ ├── fontconfig │ │ ├── fontconfig │ │ │ └── revert-static-pkgconfig.patch │ │ └── fontconfig_2.12.1.bb │ ├── freetype │ │ ├── freetype │ │ │ └── use-right-libtool.patch │ │ └── freetype_2.7.bb │ ├── fstests │ │ └── fstests_git.bb │ ├── glew │ │ ├── glew │ │ │ └── no-strip.patch │ │ └── glew_2.0.0.bb │ ├── harfbuzz │ │ └── harfbuzz_1.3.3.bb │ ├── images │ │ ├── core-image-clutter.bb │ │ ├── core-image-weston.bb │ │ └── core-image-x11.bb │ ├── jpeg │ │ ├── libjpeg-turbo │ │ │ └── fix-mips.patch │ │ └── libjpeg-turbo_1.5.1.bb │ ├── libepoxy │ │ ├── libepoxy │ │ │ ├── 0001-select-platforms-based-on-configuration-results.patch │ │ │ ├── 0002-add-an-option-to-disable-glx-support.patch │ │ │ └── no-need-for-python3.patch │ │ └── libepoxy_git.bb │ ├── libfakekey │ │ └── libfakekey_git.bb │ ├── libmatchbox │ │ └── libmatchbox_1.12.bb │ ├── libsdl │ │ ├── libsdl-1.2.15 │ │ │ ├── libsdl-1.2.15-xdata32.patch │ │ │ └── pkgconfig.patch │ │ └── libsdl_1.2.15.bb │ ├── libsdl2 │ │ ├── libsdl2 │ │ │ ├── 0001-prepend-our-sysroot-path-so-that-make-finds-our-wayl.patch │ │ │ └── linkage.patch │ │ └── libsdl2_2.0.5.bb │ ├── matchbox-session │ │ ├── matchbox-session │ │ │ └── matchbox-session │ │ └── matchbox-session_0.1.bb │ ├── matchbox-wm │ │ ├── matchbox-wm │ │ │ └── kbdconfig │ │ └── matchbox-wm_1.2.1.bb │ ├── menu-cache │ │ └── menu-cache_1.0.1.bb │ ├── mesa │ │ ├── files │ │ │ ├── 0001-Use-wayland-scanner-in-the-path.patch │ │ │ ├── disable-asm-on-non-gcc.patch │ │ │ └── replace_glibc_check_with_linux.patch │ │ ├── libglu_9.0.0.bb │ │ ├── mesa-demos │ │ │ ├── 0001-mesa-demos-Add-missing-data-files.patch │ │ │ ├── 0003-configure-Allow-to-disable-demos-which-require-GLEW-.patch │ │ │ ├── 0004-Use-DEMOS_DATA_DIR-to-locate-data-files.patch │ │ │ ├── 0007-Install-few-more-test-programs.patch │ │ │ ├── 0008-glsl-perf-Add-few-missing-.glsl-.vert-.frag-files-to.patch │ │ │ ├── 0009-glsl-perf-Install-.glsl-.vert-.frag-files.patch │ │ │ ├── 0012-mesa-demos-OpenVG-demos-with-single-frame-need-eglSw.patch │ │ │ └── 0013-only-build-GLX-demos-if-needed.patch │ │ ├── mesa-demos_8.3.0.bb │ │ ├── mesa-gl_13.0.1.bb │ │ ├── mesa.inc │ │ ├── mesa_13.0.1.bb │ │ └── mesa_git.bb │ ├── mini-x-session │ │ ├── files │ │ │ └── mini-x-session │ │ └── mini-x-session_0.1.bb │ ├── mx │ │ ├── mx-1.0 │ │ │ └── fix-test-includes.patch │ │ ├── mx-1.0_1.4.7.bb │ │ └── mx.inc │ ├── packagegroups │ │ ├── packagegroup-core-clutter.bb │ │ ├── packagegroup-core-x11-base.bb │ │ ├── packagegroup-core-x11-xserver.bb │ │ └── packagegroup-core-x11.bb │ ├── pango │ │ ├── pango │ │ │ ├── 0001-Drop-introspection-macros-from-acinclude.m4.patch │ │ │ ├── 0001-Enforce-recreation-of-docs-pango.types-it-is-build-c.patch │ │ │ └── run-ptest │ │ └── pango_1.40.3.bb │ ├── piglit │ │ ├── piglit │ │ │ ├── 0001-cmake-Link-test-utils-with-ldl.patch │ │ │ ├── 0001-cmake-Link-utils-with-xcb-explicitly.patch │ │ │ ├── 0001-cmake-install-bash-completions-in-the-right-place.patch │ │ │ └── 0001-tests-Use-FE_UPWARD-only-if-its-defined-in-fenv.h.patch │ │ └── piglit_git.bb │ ├── pong-clock │ │ ├── pong-clock │ │ │ └── pong-clock-no-flicker.c │ │ └── pong-clock_1.0.bb │ ├── startup-notification │ │ ├── startup-notification-0.12 │ │ │ └── obsolete_automake_macros.patch │ │ └── startup-notification_0.12.bb │ ├── ttf-fonts │ │ ├── liberation-fonts │ │ │ └── 30-liberation-aliases.conf │ │ ├── liberation-fonts_1.04.bb │ │ └── ttf-bitstream-vera_1.10.bb │ ├── waffle │ │ ├── waffle │ │ │ └── 0001-third_party-threads-Use-PTHREAD_MUTEX_RECURSIVE-by-d.patch │ │ └── waffle_1.5.2.bb │ ├── wayland │ │ ├── libinput │ │ │ └── touchpad-serial-synaptics-need-to-fake-new-touches-on-TRIPLETAP.patch │ │ ├── libinput_1.5.0.bb │ │ ├── mtdev_1.1.5.bb │ │ ├── wayland-protocols_1.7.bb │ │ ├── wayland_1.12.0.bb │ │ ├── weston-init.bb │ │ ├── weston-init │ │ │ ├── init │ │ │ ├── weston-start │ │ │ └── weston.service │ │ ├── weston │ │ │ ├── 0001-Add-configuration-option-for-no-input-device.patch │ │ │ ├── 0001-configure.ac-Fix-wayland-protocols-path.patch │ │ │ ├── 0001-make-error-portable.patch │ │ │ ├── 0001-shared-include-stdint.h-for-int32_t.patch │ │ │ ├── 0001-weston-launch-Provide-a-default-version-that-doesn-t.patch │ │ │ ├── weston.desktop │ │ │ ├── weston.png │ │ │ └── xwayland.weston-start │ │ └── weston_1.11.1.bb │ ├── x11-common │ │ ├── xserver-nodm-init │ │ │ ├── X11 │ │ │ │ ├── Xsession │ │ │ │ └── Xsession.d │ │ │ │ │ ├── 13xdgbasedirs.sh │ │ │ │ │ ├── 89xdgautostart.sh │ │ │ │ │ └── 90XWindowManager.sh │ │ │ ├── Xserver │ │ │ ├── gplv2-license.patch │ │ │ ├── xserver-nodm │ │ │ ├── xserver-nodm.conf.in │ │ │ └── xserver-nodm.service.in │ │ └── xserver-nodm-init_3.0.bb │ ├── xcursor-transparent-theme │ │ └── xcursor-transparent-theme_git.bb │ ├── xinput-calibrator │ │ ├── pointercal-xinput │ │ │ ├── pointercal.xinput │ │ │ └── qemuall │ │ │ │ └── pointercal.xinput │ │ ├── pointercal-xinput_0.0.bb │ │ ├── xinput-calibrator │ │ │ ├── 30xinput_calibrate.sh │ │ │ └── Allow-xinput_calibrator_pointercal.sh-to-be-run-as-n.patch │ │ └── xinput-calibrator_git.bb │ ├── xorg-app │ │ ├── mkfontdir_1.0.7.bb │ │ ├── mkfontscale_1.1.2.bb │ │ ├── rgb_1.0.6.bb │ │ ├── x11perf_1.6.0.bb │ │ ├── xauth_1.0.9.bb │ │ ├── xdpyinfo │ │ │ └── disable-xkb.patch │ │ ├── xdpyinfo_1.3.2.bb │ │ ├── xev │ │ │ └── diet-x11.patch │ │ ├── xev_1.2.2.bb │ │ ├── xeyes_1.1.1.bb │ │ ├── xhost_1.0.7.bb │ │ ├── xinit_1.3.4.bb │ │ ├── xinput_1.6.2.bb │ │ ├── xkbcomp_1.3.1.bb │ │ ├── xmodmap_1.0.9.bb │ │ ├── xorg-app-common.inc │ │ ├── xprop_1.2.2.bb │ │ ├── xrandr_1.5.0.bb │ │ ├── xset │ │ │ └── disable-xkb.patch │ │ ├── xset_1.2.3.bb │ │ ├── xvinfo_1.1.3.bb │ │ └── xwininfo_1.1.3.bb │ ├── xorg-driver │ │ ├── xf86-input-evdev_2.10.3.bb │ │ ├── xf86-input-keyboard_1.8.1.bb │ │ ├── xf86-input-keyboard_git.bb │ │ ├── xf86-input-libinput_0.22.0.bb │ │ ├── xf86-input-mouse │ │ │ └── unbreak.patch │ │ ├── xf86-input-mouse_1.9.1.bb │ │ ├── xf86-input-mouse_git.bb │ │ ├── xf86-input-synaptics_1.8.3.bb │ │ ├── xf86-input-synaptics_git.bb │ │ ├── xf86-input-vmmouse_13.1.0.bb │ │ ├── xf86-video-cirrus_1.5.3.bb │ │ ├── xf86-video-fbdev_0.4.4.bb │ │ ├── xf86-video-intel │ │ │ ├── always_include_xorg_server.h.patch │ │ │ └── disable-x11-dri3.patch │ │ ├── xf86-video-intel_git.bb │ │ ├── xf86-video-omap_0.4.4.bb │ │ ├── xf86-video-omapfb │ │ │ ├── 0001-Prevents-omapfb-from-from-crashing-when-pixelclock-o.patch │ │ │ ├── 0001-Revert-Set-a-large-CRTC-upper-limit-to-not-prune-lar.patch │ │ │ ├── 0002-Revert-Set-virtual-size-when-configuring-framebuffer.patch │ │ │ ├── 0003-force-plain-mode.patch │ │ │ ├── 0004-blacklist-tv-out.patch │ │ │ ├── 0005-Attempt-to-fix-VRFB.patch │ │ │ ├── 0006-omapfb-port-to-new-xserver-video-API.patch │ │ │ └── 0007-always_include_xorg_server.h.patch │ │ ├── xf86-video-omapfb_git.bb │ │ ├── xf86-video-vesa_2.3.4.bb │ │ ├── xf86-video-vmware │ │ │ └── 0002-add-option-for-vmwgfx.patch │ │ ├── xf86-video-vmware_13.1.0.bb │ │ ├── xorg-driver-common.inc │ │ ├── xorg-driver-input.inc │ │ └── xorg-driver-video.inc │ ├── xorg-font │ │ ├── encodings │ │ │ └── nocompiler.patch │ │ ├── encodings_1.0.4.bb │ │ ├── font-alias-1.0.3 │ │ │ └── nocompiler.patch │ │ ├── font-alias_1.0.3.bb │ │ ├── font-util_1.3.1.bb │ │ ├── xorg-font-common.inc │ │ ├── xorg-minimal-fonts.bb │ │ └── xorg-minimal-fonts │ │ │ └── misc │ │ │ ├── 6x13-ISO8859-1.pcf.gz │ │ │ ├── 6x13-ISO8859-10.pcf.gz │ │ │ ├── 6x13-ISO8859-11.pcf.gz │ │ │ ├── 6x13-ISO8859-13.pcf.gz │ │ │ ├── 6x13-ISO8859-14.pcf.gz │ │ │ ├── 6x13-ISO8859-15.pcf.gz │ │ │ ├── 6x13-ISO8859-16.pcf.gz │ │ │ ├── 6x13-ISO8859-2.pcf.gz │ │ │ ├── 6x13-ISO8859-3.pcf.gz │ │ │ ├── 6x13-ISO8859-4.pcf.gz │ │ │ ├── 6x13-ISO8859-5.pcf.gz │ │ │ ├── 6x13-ISO8859-7.pcf.gz │ │ │ ├── 6x13-ISO8859-8.pcf.gz │ │ │ ├── 6x13-ISO8859-9.pcf.gz │ │ │ ├── 6x13-KOI8-R.pcf.gz │ │ │ ├── 6x13.pcf.gz │ │ │ ├── 6x13B-ISO8859-1.pcf.gz │ │ │ ├── 6x13B-ISO8859-10.pcf.gz │ │ │ ├── 6x13B-ISO8859-13.pcf.gz │ │ │ ├── 6x13B-ISO8859-14.pcf.gz │ │ │ ├── 6x13B-ISO8859-15.pcf.gz │ │ │ ├── 6x13B-ISO8859-16.pcf.gz │ │ │ ├── 6x13B-ISO8859-2.pcf.gz │ │ │ ├── 6x13B-ISO8859-3.pcf.gz │ │ │ ├── 6x13B-ISO8859-4.pcf.gz │ │ │ ├── 6x13B-ISO8859-5.pcf.gz │ │ │ ├── 6x13B-ISO8859-7.pcf.gz │ │ │ ├── 6x13B-ISO8859-8.pcf.gz │ │ │ ├── 6x13B-ISO8859-9.pcf.gz │ │ │ ├── 6x13B.pcf.gz │ │ │ ├── 6x13O-ISO8859-1.pcf.gz │ │ │ ├── 6x13O-ISO8859-10.pcf.gz │ │ │ ├── 6x13O-ISO8859-13.pcf.gz │ │ │ ├── 6x13O-ISO8859-14.pcf.gz │ │ │ ├── 6x13O-ISO8859-15.pcf.gz │ │ │ ├── 6x13O-ISO8859-16.pcf.gz │ │ │ ├── 6x13O-ISO8859-2.pcf.gz │ │ │ ├── 6x13O-ISO8859-3.pcf.gz │ │ │ ├── 6x13O-ISO8859-4.pcf.gz │ │ │ ├── 6x13O-ISO8859-5.pcf.gz │ │ │ ├── 6x13O-ISO8859-7.pcf.gz │ │ │ ├── 6x13O-ISO8859-9.pcf.gz │ │ │ ├── 6x13O.pcf.gz │ │ │ ├── cursor.pcf.gz │ │ │ └── fonts.dir │ ├── xorg-lib │ │ ├── libdmx_1.1.3.bb │ │ ├── libfontenc_1.1.3.bb │ │ ├── libice_1.0.9.bb │ │ ├── libpciaccess │ │ │ ├── 0001-Include-config.h-before-anything-else-in-.c.patch │ │ │ ├── 0002-Fix-quoting-issue.patch │ │ │ ├── 0003-linux_sysfs.c-Include-limits.h-for-PATH_MAX.patch │ │ │ └── 0004-Don-t-include-sys-io.h-on-arm.patch │ │ ├── libpciaccess_0.13.4.bb │ │ ├── libpthread-stubs_0.3.bb │ │ ├── libsm_1.2.2.bb │ │ ├── libx11-diet_1.6.4.bb │ │ ├── libx11.inc │ │ ├── libx11 │ │ │ ├── X18NCMSstubs.diff │ │ │ ├── disable_tests.patch │ │ │ ├── fix-disable-xlocale.diff │ │ │ └── fix-utf8-wrong-define.patch │ │ ├── libx11_1.6.4.bb │ │ ├── libxau_1.0.8.bb │ │ ├── libxcalibrate │ │ │ └── fix-xcb.patch │ │ ├── libxcalibrate_git.bb │ │ ├── libxcb │ │ │ ├── Fix-inconsistent-use-of-tabs-vs.-space.patch │ │ │ ├── disable-check.patch │ │ │ ├── gcc-mips-pr68302-mips-workaround.patch │ │ │ └── xcbincludedir.patch │ │ ├── libxcb_1.12.bb │ │ ├── libxcomposite │ │ │ └── change-include-order.patch │ │ ├── libxcomposite_0.4.4.bb │ │ ├── libxcursor_1.1.14.bb │ │ ├── libxdamage_1.1.4.bb │ │ ├── libxdmcp_1.1.2.bb │ │ ├── libxext_1.3.3.bb │ │ ├── libxfixes_5.0.3.bb │ │ ├── libxfont_1.5.2.bb │ │ ├── libxft_2.3.2.bb │ │ ├── libxi_1.7.7.bb │ │ ├── libxinerama_1.1.3.bb │ │ ├── libxkbcommon_0.6.1.bb │ │ ├── libxkbfile_1.0.9.bb │ │ ├── libxmu_1.1.2.bb │ │ ├── libxpm_3.5.11.bb │ │ ├── libxrandr_1.5.1.bb │ │ ├── libxrender_0.9.10.bb │ │ ├── libxres_1.0.7.bb │ │ ├── libxscrnsaver_1.2.2.bb │ │ ├── libxshmfence_1.2.bb │ │ ├── libxt │ │ │ └── libxt_fix_for_x32.patch │ │ ├── libxt_1.1.5.bb │ │ ├── libxtst_1.2.3.bb │ │ ├── libxv_1.0.11.bb │ │ ├── libxvmc_1.0.10.bb │ │ ├── libxxf86dga_1.1.4.bb │ │ ├── libxxf86misc_1.0.3.bb │ │ ├── libxxf86vm_1.1.4.bb │ │ ├── pixman │ │ │ ├── 0001-ARM-qemu-related-workarounds-in-cpu-features-detecti.patch │ │ │ ├── 0001-test-utils-Check-for-FE_INVALID-definition-before-us.patch │ │ │ └── asm_include.patch │ │ ├── pixman_0.34.0.bb │ │ ├── xcb-util-image │ │ │ └── clang.patch │ │ ├── xcb-util-image_0.4.0.bb │ │ ├── xcb-util-keysyms_0.4.0.bb │ │ ├── xcb-util-renderutil_0.3.9.bb │ │ ├── xcb-util-wm_0.4.1.bb │ │ ├── xcb-util.inc │ │ ├── xcb-util_0.4.0.bb │ │ ├── xkeyboard-config_2.18.bb │ │ ├── xorg-lib-common.inc │ │ └── xtrans_1.3.5.bb │ ├── xorg-proto │ │ ├── bigreqsproto_1.1.2.bb │ │ ├── calibrateproto │ │ │ └── fix.patch │ │ ├── calibrateproto_git.bb │ │ ├── compositeproto_0.4.2.bb │ │ ├── damageproto_1.2.1.bb │ │ ├── dmxproto_2.3.1.bb │ │ ├── dri2proto_2.8.bb │ │ ├── dri3proto_1.0.bb │ │ ├── fixesproto_5.0.bb │ │ ├── fontsproto_2.1.3.bb │ │ ├── glproto_1.4.17.bb │ │ ├── inputproto_2.3.2.bb │ │ ├── kbproto_1.0.7.bb │ │ ├── presentproto_git.bb │ │ ├── randrproto_1.5.0.bb │ │ ├── recordproto_1.14.2.bb │ │ ├── renderproto_0.11.1.bb │ │ ├── resourceproto_1.2.0.bb │ │ ├── scrnsaverproto_1.2.2.bb │ │ ├── videoproto_2.3.3.bb │ │ ├── xcb-proto │ │ │ ├── 0001-Make-whitespace-use-consistent.patch │ │ │ ├── 0002-print-is-a-function-and-needs-parentheses.patch │ │ │ └── no-python-native.patch │ │ ├── xcb-proto_1.12.bb │ │ ├── xcmiscproto_1.2.2.bb │ │ ├── xextproto_7.3.0.bb │ │ ├── xf86dgaproto_2.1.bb │ │ ├── xf86driproto_2.1.1.bb │ │ ├── xf86miscproto_0.9.3.bb │ │ ├── xf86vidmodeproto_2.3.1.bb │ │ ├── xineramaproto_1.2.1.bb │ │ ├── xorg-proto-common.inc │ │ ├── xproto │ │ │ └── xproto_fix_for_x32.patch │ │ └── xproto_7.0.31.bb │ ├── xorg-util │ │ ├── gccmakedep_1.0.3.bb │ │ ├── makedepend_1.0.5.bb │ │ ├── util-macros_1.19.0.bb │ │ └── xorg-util-common.inc │ ├── xorg-xserver │ │ ├── xserver-xf86-config │ │ │ ├── 10-preload-modules.conf │ │ │ ├── qemuarm │ │ │ │ └── xorg.conf │ │ │ ├── qemumips │ │ │ │ └── xorg.conf │ │ │ ├── qemumips64 │ │ │ │ └── xorg.conf │ │ │ ├── qemuppc │ │ │ │ └── xorg.conf │ │ │ ├── qemush4 │ │ │ │ └── xorg.conf │ │ │ ├── qemux86-64 │ │ │ │ └── xorg.conf │ │ │ ├── qemux86 │ │ │ │ └── xorg.conf │ │ │ └── xorg.conf │ │ ├── xserver-xf86-config_0.1.bb │ │ ├── xserver-xorg.inc │ │ ├── xserver-xorg │ │ │ ├── macro_tweak.patch │ │ │ └── musl-arm-inb-outb.patch │ │ └── xserver-xorg_1.18.4.bb │ ├── xrestop │ │ └── xrestop_0.4.bb │ └── xvideo-tests │ │ └── xvideo-tests_git.bb ├── recipes-kernel │ ├── blktrace │ │ ├── blktrace │ │ │ ├── 0001-include-sys-types.h-for-dev_t-definition.patch │ │ │ └── ldflags.patch │ │ └── blktrace_git.bb │ ├── cryptodev │ │ ├── cryptodev-linux_1.8.bb │ │ ├── cryptodev-module_1.8.bb │ │ ├── cryptodev-tests_1.8.bb │ │ ├── cryptodev.inc │ │ └── files │ │ │ ├── 0001-Add-the-compile-and-install-rules-for-cryptodev-test.patch │ │ │ ├── 0001-Disable-installing-header-file-provided-by-another-p.patch │ │ │ ├── 06d6b560c6e45dc317dae47c74706fa43f4a31d8.patch │ │ │ └── cb186f682679383e8b5806240927903730ce85d9.patch │ ├── dtc │ │ ├── dtc.inc │ │ ├── dtc │ │ │ └── make_install.patch │ │ └── dtc_1.4.2.bb │ ├── kern-tools │ │ └── kern-tools-native_git.bb │ ├── kexec │ │ ├── kexec-tools.inc │ │ ├── kexec-tools │ │ │ ├── 0001-purgatory-Pass-r-directly-to-linker.patch │ │ │ ├── 0001-vmcore-dmesg-Define-_GNU_SOURCE.patch │ │ │ ├── 0002-powerpc-change-the-memory-size-limit.patch │ │ │ ├── kdump │ │ │ ├── kdump.conf │ │ │ ├── kexec-aarch64.patch │ │ │ └── kexec-x32.patch │ │ └── kexec-tools_2.0.12.bb │ ├── kmod │ │ ├── depmodwrapper-cross_1.0.bb │ │ ├── kmod-native_git.bb │ │ ├── kmod.inc │ │ ├── kmod │ │ │ ├── Change-to-calling-bswap_-instead-of-htobe-and-be-toh.patch │ │ │ ├── avoid_parallel_tests.patch │ │ │ ├── depmod-search.conf │ │ │ ├── fix-O_CLOEXEC.patch │ │ │ ├── ptest.patch │ │ │ └── run-ptest │ │ └── kmod_git.bb │ ├── latencytop │ │ ├── latencytop-0.5 │ │ │ ├── 0001-Rectify-the-function-signatures-to-fix-prototype-mis.patch │ │ │ ├── latencytop-fsync.patch │ │ │ └── latencytop-makefile.patch │ │ └── latencytop_0.5.bb │ ├── libpfm │ │ ├── files │ │ │ ├── 0001-Makefile-Add-LDFLAGS-variable-to-SLDFLAGS.patch │ │ │ └── fix-misleading-indentation-error.patch │ │ └── libpfm4_4.6.0.bb │ ├── linux-firmware │ │ └── linux-firmware_git.bb │ ├── linux-libc-headers │ │ ├── linux-libc-headers.inc │ │ ├── linux-libc-headers │ │ │ ├── 0001-libc-compat.h-fix-some-issues-arising-from-in6.h.patch │ │ │ ├── 0002-libc-compat.h-prevent-redefinition-of-struct-ethhdr.patch │ │ │ └── 0003-remove-inclusion-of-sysinfo.h-in-kernel.h.patch │ │ ├── linux-libc-headers_4.4.bb │ │ └── linux-libc-headers_4.8.bb │ ├── linux │ │ ├── kernel-devsrc.bb │ │ ├── linux-dtb.inc │ │ ├── linux-dummy.bb │ │ ├── linux-dummy │ │ │ └── COPYING.GPL │ │ ├── linux-yocto-dev.bb │ │ ├── linux-yocto-rt_4.1.bb │ │ ├── linux-yocto-rt_4.4.bb │ │ ├── linux-yocto-rt_4.8.bb │ │ ├── linux-yocto-tiny_4.1.bb │ │ ├── linux-yocto-tiny_4.4.bb │ │ ├── linux-yocto-tiny_4.8.bb │ │ ├── linux-yocto.inc │ │ ├── linux-yocto_4.1.bb │ │ ├── linux-yocto_4.4.bb │ │ └── linux-yocto_4.8.bb │ ├── lttng │ │ ├── babeltrace_1.4.0.bb │ │ ├── lttng-modules │ │ │ └── Makefile-Do-not-fail-if-CONFIG_TRACEPOINTS-is-not-en.patch │ │ ├── lttng-modules_git.bb │ │ ├── lttng-tools │ │ │ ├── 0001-Fix-error.h-common-error.h.patch │ │ │ └── run-ptest │ │ ├── lttng-tools_git.bb │ │ ├── lttng-ust │ │ │ └── lttng-ust-doc-examples-disable.patch │ │ └── lttng-ust_git.bb │ ├── modutils-initscripts │ │ ├── files │ │ │ ├── PD.patch │ │ │ └── modutils.sh │ │ └── modutils-initscripts.bb │ ├── oprofile │ │ ├── oprofile.inc │ │ ├── oprofile │ │ │ ├── 0001-Add-rmb-definition-for-NIOS2-architecture.patch │ │ │ ├── 0001-Fix-FTBFS-problem-with-GCC-6.patch │ │ │ ├── acinclude.m4 │ │ │ ├── automake-foreign.patch │ │ │ ├── musl.patch │ │ │ ├── oprofile-cross-compile-tests.patch │ │ │ ├── root-home-dir.patch │ │ │ └── run-ptest │ │ └── oprofile_1.1.0.bb │ ├── perf │ │ ├── perf-features.inc │ │ └── perf.bb │ ├── powertop │ │ ├── powertop │ │ │ └── 0001-include-rquired-headers-for-typedefs.patch │ │ └── powertop_2.8.bb │ ├── sysprof │ │ ├── files │ │ │ ├── 0001-Avoid-building-docs.patch │ │ │ ├── 0001-Disable-check-for-polkit-for-UI.patch │ │ │ ├── 0001-configure-Add-option-to-enable-disable-polkit.patch │ │ │ └── define-NT_GNU_BUILD_ID.patch │ │ └── sysprof_3.22.2.bb │ ├── systemtap │ │ ├── systemtap-uprobes_git.bb │ │ ├── systemtap │ │ │ ├── configure-allow-to-disable-libvirt.patch │ │ │ ├── fix-monitor-linking.patch │ │ │ ├── monitor-option.patch │ │ │ ├── no-msgfmt-check.patch │ │ │ ├── obsolete_automake_macros.patch │ │ │ ├── system_map_location.patch │ │ │ └── x32_abi_time.patch │ │ ├── systemtap_git.bb │ │ └── systemtap_git.inc │ └── trace-cmd │ │ ├── kernelshark_git.bb │ │ ├── trace-cmd.inc │ │ ├── trace-cmd │ │ └── blktrace-api-compatibility.patch │ │ └── trace-cmd_git.bb ├── recipes-lsb4 │ ├── libpng │ │ └── libpng12_1.2.56.bb │ └── perl │ │ ├── libclass-isa-perl_0.36.bb │ │ ├── libdumpvalue-perl_1.17.bb │ │ ├── libenv-perl_1.04.bb │ │ ├── libfile-checktree-perl_4.41.bb │ │ ├── libi18n-collate-perl_1.02.bb │ │ └── libpod-plainer-perl_1.04.bb ├── recipes-multimedia │ ├── alsa │ │ ├── alsa-fpu.inc │ │ ├── alsa-lib │ │ │ ├── Check-if-wordexp-function-is-supported.patch │ │ │ └── avoid-including-sys-poll.h-directly.patch │ │ ├── alsa-lib_1.1.2.bb │ │ ├── alsa-plugins_1.1.1.bb │ │ ├── alsa-tools │ │ │ ├── 0001-Cus428Midi-Explicitly-cast-constant-to-char-type.patch │ │ │ ├── 0001-as10k1-Make-output_tram_line-static-inline.patch │ │ │ ├── autotools.patch │ │ │ ├── gitcompile_hdajacksensetest │ │ │ └── makefile_no_gtk.patch │ │ ├── alsa-tools_1.1.0.bb │ │ ├── alsa-utils-scripts_1.1.2.bb │ │ ├── alsa-utils │ │ │ └── 0001-alsactl-don-t-let-systemd-unit-restore-the-volume-wh.patch │ │ └── alsa-utils_1.1.2.bb │ ├── ffmpeg │ │ ├── ffmpeg │ │ │ └── mips64_cpu_detection.patch │ │ └── ffmpeg_3.2.1.bb │ ├── flac │ │ └── flac_1.3.1.bb │ ├── gstreamer │ │ ├── files │ │ │ └── 0001-introspection.m4-prefix-pkgconfig-paths-with-PKG_CON.patch │ │ ├── gst-player │ │ │ ├── 0001-gtk-play-provide-similar-behaviour-for-quit-and-clos.patch │ │ │ ├── Add-error-signal-emission-for-missing-plugins.patch │ │ │ ├── Fix-pause-play.patch │ │ │ ├── filechooser.patch │ │ │ └── gst-player.desktop │ │ ├── gst-player_git.bb │ │ ├── gst-plugins-package.inc │ │ ├── gstreamer1.0-libav.inc │ │ ├── gstreamer1.0-libav │ │ │ ├── 0001-Disable-yasm-for-libav-when-disable-yasm.patch │ │ │ └── workaround-to-build-gst-libav-for-i586-with-gcc.patch │ │ ├── gstreamer1.0-libav_1.8.3.bb │ │ ├── gstreamer1.0-libav_git.bb │ │ ├── gstreamer1.0-meta-base.bb │ │ ├── gstreamer1.0-omx.inc │ │ ├── gstreamer1.0-omx │ │ │ └── 0001-omx-fixed-type-error-in-printf-call.patch │ │ ├── gstreamer1.0-omx_1.2.0.bb │ │ ├── gstreamer1.0-omx_git.bb │ │ ├── gstreamer1.0-plugins-bad.inc │ │ ├── gstreamer1.0-plugins-bad │ │ │ ├── 0001-Makefile.am-don-t-hardcode-libtool-name-when-running.patch │ │ │ ├── 0001-gstreamer-gl.pc.in-don-t-append-GL_CFLAGS-to-CFLAGS.patch │ │ │ ├── 0002-glplugin-enable-gldeinterlace-on-OpenGL-ES.patch │ │ │ ├── 0003-glcolorconvert-implement-multiple-render-targets-for.patch │ │ │ ├── 0004-glcolorconvert-don-t-use-the-predefined-variable-nam.patch │ │ │ ├── 0005-glshader-add-glBindFragDataLocation.patch │ │ │ ├── 0006-glcolorconvert-GLES3-deprecates-texture2D-and-it-doe.patch │ │ │ ├── 0008-gl-implement-GstGLMemoryEGL.patch │ │ │ ├── 0009-glimagesink-Downrank-to-marginal.patch │ │ │ ├── avoid-including-sys-poll.h-directly.patch │ │ │ ├── configure-allow-to-disable-libssh2.patch │ │ │ ├── ensure-valid-sentinels-for-gst_structure_get-etc.patch │ │ │ └── fix-maybe-uninitialized-warnings-when-compiling-with-Os.patch │ │ ├── gstreamer1.0-plugins-bad_1.8.3.bb │ │ ├── gstreamer1.0-plugins-bad_git.bb │ │ ├── gstreamer1.0-plugins-base.inc │ │ ├── gstreamer1.0-plugins-base │ │ │ ├── 0001-Makefile.am-don-t-hardcode-libtool-name-when-running.patch │ │ │ ├── 0002-Makefile.am-prefix-calls-to-pkg-config-with-PKG_CONF.patch │ │ │ ├── 0003-riff-add-missing-include-directories-when-calling-in.patch │ │ │ ├── 0003-ssaparse-enhance-SSA-text-lines-parsing.patch │ │ │ ├── 0004-rtsp-drop-incorrect-reference-to-gstreamer-sdp-in-Ma.patch │ │ │ ├── 0004-subparse-set-need_segment-after-sink-pad-received-GS.patch │ │ │ ├── encodebin-Need-more-buffers-in-output-queue-for-bett.patch │ │ │ ├── get-caps-from-src-pad-when-query-caps.patch │ │ │ └── make-gio_unix_2_0-dependency-configurable.patch │ │ ├── gstreamer1.0-plugins-base_1.8.3.bb │ │ ├── gstreamer1.0-plugins-base_git.bb │ │ ├── gstreamer1.0-plugins-good.inc │ │ ├── gstreamer1.0-plugins-good │ │ │ ├── 0001-gstrtpmp4gpay-set-dafault-value-for-MPEG4-without-co.patch │ │ │ ├── avoid-including-sys-poll.h-directly.patch │ │ │ └── ensure-valid-sentinel-for-gst_structure_get.patch │ │ ├── gstreamer1.0-plugins-good_1.8.3.bb │ │ ├── gstreamer1.0-plugins-good_git.bb │ │ ├── gstreamer1.0-plugins-ugly.inc │ │ ├── gstreamer1.0-plugins-ugly_1.8.3.bb │ │ ├── gstreamer1.0-plugins-ugly_git.bb │ │ ├── gstreamer1.0-plugins.inc │ │ ├── gstreamer1.0-rtsp-server.inc │ │ ├── gstreamer1.0-rtsp-server │ │ │ └── 0001-Don-t-hardcode-libtool-name-when-using-introspection.patch │ │ ├── gstreamer1.0-rtsp-server_1.8.3.bb │ │ ├── gstreamer1.0.inc │ │ ├── gstreamer1.0_1.8.3.bb │ │ └── gstreamer1.0_git.bb │ ├── lame │ │ ├── lame │ │ │ ├── lame-3.99.5_fix_for_automake-1.12.x.patch │ │ │ └── no-gtk1.patch │ │ └── lame_3.99.5.bb │ ├── liba52 │ │ ├── liba52 │ │ │ └── buildcleanup.patch │ │ └── liba52_0.7.4.bb │ ├── libid3tag │ │ ├── libid3tag │ │ │ ├── addpkgconfig.patch │ │ │ └── obsolete_automake_macros.patch │ │ └── libid3tag_0.15.1b.bb │ ├── libogg │ │ └── libogg_1.3.2.bb │ ├── libomxil │ │ ├── libomxil-0.9.3 │ │ │ ├── configure-fix.patch │ │ │ ├── disable-so-versioning.patch │ │ │ ├── dynamicloader-linking.patch │ │ │ ├── makefile-docdir-fix.patch │ │ │ └── parallel-make.patch │ │ └── libomxil_0.9.3.bb │ ├── libpng │ │ └── libpng_1.6.26.bb │ ├── libsamplerate │ │ ├── libsamplerate0 │ │ │ └── 0001-configure.ac-improve-alsa-handling.patch │ │ └── libsamplerate0_0.1.9.bb │ ├── libsndfile │ │ └── libsndfile1_1.0.27.bb │ ├── libtheora │ │ ├── libtheora-1.1.1 │ │ │ └── no-docs.patch │ │ └── libtheora_1.1.1.bb │ ├── libtiff │ │ ├── files │ │ │ ├── CVE-2015-8665_8683.patch │ │ │ ├── CVE-2015-8781.patch │ │ │ ├── CVE-2015-8784.patch │ │ │ ├── CVE-2016-3186.patch │ │ │ ├── CVE-2016-3622.patch │ │ │ ├── CVE-2016-3623.patch │ │ │ ├── CVE-2016-3632.patch │ │ │ ├── CVE-2016-3658.patch │ │ │ ├── CVE-2016-3945.patch │ │ │ ├── CVE-2016-3990.patch │ │ │ ├── CVE-2016-3991.patch │ │ │ ├── CVE-2016-5321.patch │ │ │ ├── CVE-2016-5323.patch │ │ │ ├── CVE-2016-9539.patch │ │ │ ├── CVE-2016-9540.patch │ │ │ └── libtool2.patch │ │ └── tiff_4.0.6.bb │ ├── libvorbis │ │ └── libvorbis_1.3.5.bb │ ├── mpeg2dec │ │ ├── mpeg2dec-0.4.1 │ │ │ └── altivec_h_needed.patch │ │ └── mpeg2dec_0.4.1.bb │ ├── mpg123 │ │ └── mpg123_1.23.8.bb │ ├── pulseaudio │ │ ├── pulseaudio.inc │ │ ├── pulseaudio │ │ │ ├── 0001-alsa-bluetooth-fail-if-user-requested-profile-doesn-.patch │ │ │ ├── 0001-client-conf-Add-allow-autospawn-for-root.patch │ │ │ ├── 0001-padsp-Make-it-compile-on-musl.patch │ │ │ ├── 0002-card-don-t-allow-the-CARD_NEW-hook-to-fail.patch │ │ │ ├── 0003-card-move-profile-selection-after-pa_card_new.patch │ │ │ ├── 0004-card-remove-pa_card_new_data.active_profile.patch │ │ │ ├── 0005-alsa-set-availability-for-some-unavailable-profiles.patch │ │ │ └── volatiles.04_pulse │ │ └── pulseaudio_9.0.bb │ ├── sbc │ │ └── sbc_1.3.bb │ ├── speex │ │ ├── speex_1.2rc2.bb │ │ ├── speexdsp │ │ │ └── 0001-Don-t-rely-on-HAVE_STDINT_H-et-al.-being-defined.patch │ │ └── speexdsp_1.2rc3.bb │ ├── tremor │ │ ├── tremor │ │ │ ├── obsolete_automake_macros.patch │ │ │ └── tremor-arm-thumb2.patch │ │ └── tremor_20150107.bb │ ├── webp │ │ └── libwebp_0.5.1.bb │ └── x264 │ │ ├── x264 │ │ └── don-t-default-to-cortex-a9-with-neon.patch │ │ └── x264_git.bb ├── recipes-rt │ ├── README │ ├── images │ │ ├── core-image-rt-sdk.bb │ │ └── core-image-rt.bb │ └── rt-tests │ │ ├── files │ │ ├── rt_bmark.py │ │ └── run-ptest │ │ ├── hwlatdetect_1.1.bb │ │ ├── rt-tests.inc │ │ └── rt-tests_1.1.bb ├── recipes-sato │ ├── images │ │ ├── core-image-sato-dev.bb │ │ ├── core-image-sato-sdk-ptest.bb │ │ ├── core-image-sato-sdk.bb │ │ └── core-image-sato.bb │ ├── l3afpad │ │ └── l3afpad_git.bb │ ├── matchbox-config-gtk │ │ ├── files │ │ │ └── no-handed.patch │ │ └── matchbox-config-gtk_0.2.bb │ ├── matchbox-desktop │ │ ├── files │ │ │ └── vfolders │ │ │ │ ├── All.directory │ │ │ │ ├── Applications.directory │ │ │ │ ├── Games.directory │ │ │ │ ├── Root.order │ │ │ │ └── Settings.directory │ │ └── matchbox-desktop_2.1.bb │ ├── matchbox-keyboard │ │ ├── files │ │ │ ├── 0001-desktop-file-Hide-the-keyboard-from-app-list.patch │ │ │ └── 80matchboxkeyboard.sh │ │ └── matchbox-keyboard_0.1.1.bb │ ├── matchbox-panel-2 │ │ ├── files │ │ │ └── 0001-applets-systray-Allow-icons-to-be-smaller.patch │ │ └── matchbox-panel-2_2.11.bb │ ├── matchbox-sato │ │ ├── matchbox-session-sato │ │ │ ├── index.theme │ │ │ └── session │ │ └── matchbox-session-sato_0.1.bb │ ├── matchbox-terminal │ │ └── matchbox-terminal_0.1.bb │ ├── matchbox-theme-sato │ │ ├── matchbox-theme-sato.inc │ │ └── matchbox-theme-sato_0.2.bb │ ├── packagegroups │ │ └── packagegroup-core-x11-sato.bb │ ├── pcmanfm │ │ ├── files │ │ │ ├── emblem-symbolic-link.png │ │ │ ├── gnome-fs-directory.png │ │ │ ├── gnome-fs-regular.png │ │ │ ├── gnome-mime-text-plain.png │ │ │ └── no-desktop.patch │ │ └── pcmanfm_1.2.4.bb │ ├── pulseaudio-sato │ │ ├── pulseaudio-client-conf-sato │ │ │ └── 50-sato.conf │ │ └── pulseaudio-client-conf-sato_1.bb │ ├── puzzles │ │ ├── files │ │ │ ├── 0001-Use-labs-instead-of-abs.patch │ │ │ ├── 0001-palisade-Fix-warnings-with-clang-on-arm.patch │ │ │ ├── 0001-rect-Fix-compiler-errors-about-uninitialized-use-of-.patch │ │ │ └── fix-compiling-failure-with-option-g-O.patch │ │ └── puzzles_git.bb │ ├── rxvt-unicode │ │ ├── rxvt-unicode.inc │ │ ├── rxvt-unicode │ │ │ ├── rxvt.desktop │ │ │ ├── rxvt.png │ │ │ └── xwc.patch │ │ ├── rxvt-unicode_9.20.bb │ │ └── rxvt-unicode_9.22.bb │ ├── sato-screenshot │ │ └── sato-screenshot_0.3.bb │ ├── settings-daemon │ │ ├── files │ │ │ ├── 70settings-daemon.sh │ │ │ └── addsoundkeys.patch │ │ └── settings-daemon_0.0.2.bb │ ├── shutdown-desktop │ │ ├── shutdown-desktop.bb │ │ └── shutdown-desktop │ │ │ └── shutdown.desktop │ └── webkit │ │ ├── files │ │ ├── 0001-FindGObjectIntrospection.cmake-prefix-variables-obta.patch │ │ ├── 0001-Fix-racy-parallel-build-of-WebKit2-4.0.gir.patch │ │ ├── 0001-OptionsGTK.cmake-drop-the-hardcoded-introspection-gt.patch │ │ ├── 0001-Tweak-gtkdoc-settings-so-that-gtkdoc-generation-work.patch │ │ ├── 0001-When-building-introspection-files-add-CMAKE_C_FLAGS-.patch │ │ ├── musl-fixes.patch │ │ └── ppc-musl-fix.patch │ │ └── webkitgtk_2.14.2.bb ├── recipes-support │ ├── apr │ │ ├── apr-util │ │ │ ├── configfix.patch │ │ │ ├── configure_fixes.patch │ │ │ └── run-ptest │ │ ├── apr-util_1.5.4.bb │ │ ├── apr │ │ │ ├── Fix-packet-discards-HTTP-redirect.patch │ │ │ ├── cleanup.patch │ │ │ ├── configfix.patch │ │ │ ├── configure.in-fix-LTFLAGS-to-make-it-work-with-ccache.patch │ │ │ ├── configure_fixes.patch │ │ │ ├── run-ptest │ │ │ └── upgrade-and-fix-1.5.1.patch │ │ └── apr_1.5.2.bb │ ├── argp-standalone │ │ ├── argp-standalone_1.3.bb │ │ └── files │ │ │ ├── 0001-throw-in-funcdef.patch │ │ │ ├── 0002-isprint.patch │ │ │ └── out_of_tree_build.patch │ ├── aspell │ │ └── aspell_0.60.6.1.bb │ ├── atk │ │ ├── at-spi2-atk_2.22.0.bb │ │ ├── at-spi2-core │ │ │ ├── 0001-build-Add-with-systemduserunitdir.patch │ │ │ └── 0001-nls.m4-Take-it-from-gettext-0.15.patch │ │ ├── at-spi2-core_2.22.0.bb │ │ └── atk_2.22.0.bb │ ├── attr │ │ ├── acl.inc │ │ ├── acl │ │ │ ├── acl-fix-the-order-of-expected-output-of-getfacl.patch │ │ │ ├── add-missing-configure.ac.patch │ │ │ ├── run-ptest │ │ │ ├── test-fix-directory-permissions.patch │ │ │ ├── test-fix-insufficient-quoting-of.patch │ │ │ └── test-fixups-on-SELinux-machines-for-root-testcases.patch │ │ ├── acl_2.2.52.bb │ │ ├── attr.inc │ │ ├── attr_2.4.47.bb │ │ ├── ea-acl.inc │ │ └── files │ │ │ ├── attr-Missing-configure.ac.patch │ │ │ ├── dont-use-decl-macros.patch │ │ │ ├── relative-libdir.patch │ │ │ └── run-ptest │ ├── bash-completion │ │ └── bash-completion_2.4.bb │ ├── bdwgc │ │ ├── bdwgc │ │ │ ├── 0001-configure.ac-add-check-for-NO_GETCONTEXT-definition.patch │ │ │ └── musl_header_fix.patch │ │ └── bdwgc_7.6.0.bb │ ├── beecrypt │ │ ├── beecrypt │ │ │ ├── add-option-dev-dsp.patch │ │ │ ├── beecrypt-enable-ptest-support.patch │ │ │ ├── disable-icu-check.patch │ │ │ ├── fix-for-gcc-4.7.patch │ │ │ ├── fix-security.patch │ │ │ └── run-ptest │ │ └── beecrypt_4.2.1.bb │ ├── bmap-tools │ │ └── bmap-tools_3.2.bb │ ├── boost │ │ ├── bjam-native_1.62.0.bb │ │ ├── boost-1.62.0.inc │ │ ├── boost.inc │ │ ├── boost │ │ │ ├── 0001-boost-asio-detail-socket_types.hpp-fix-poll.h-includ.patch │ │ │ ├── 0002-boost-test-execution_monitor.hpp-fix-mips-soft-float.patch │ │ │ ├── 0004-Use-atomic-by-default-when-BOOST_NO_CXX11_HDR_ATOMIC.patch │ │ │ ├── arm-intrinsics.patch │ │ │ ├── boost-CVE-2012-2677.patch │ │ │ ├── boost-math-disable-pch-for-gcc.patch │ │ │ └── consider-hardfp.patch │ │ ├── boost_1.62.0.bb │ │ └── files │ │ │ └── bjam-native-build-bjam.debug.patch │ ├── ca-certificates │ │ ├── ca-certificates │ │ │ ├── 0001-update-ca-certificates-don-t-use-Debianisms-in-run-p.patch │ │ │ ├── 0002-update-ca-certificates-use-SYSROOT.patch │ │ │ ├── default-sysroot.patch │ │ │ ├── sbindir.patch │ │ │ └── update-ca-certificates-support-Toybox.patch │ │ └── ca-certificates_20161102.bb │ ├── consolekit │ │ ├── consolekit │ │ │ ├── add-polkit-configure-argument.patch │ │ │ └── sepbuildfix.patch │ │ └── consolekit_0.4.6.bb │ ├── createrepo │ │ ├── createrepo │ │ │ ├── createrepo-dbpath.patch │ │ │ ├── createrepo-rpm549.patch │ │ │ ├── dumpMetadata-disable-signature-validation.patch │ │ │ ├── fix-native-install.patch │ │ │ ├── fixstat.patch │ │ │ ├── python-scripts-should-use-interpreter-from-env.patch │ │ │ ├── recommends.patch │ │ │ └── rpm-createsolvedb.py │ │ └── createrepo_0.4.11.bb │ ├── curl │ │ ├── curl │ │ │ ├── 0001-replace-krb5-config-with-pkg-config.patch │ │ │ └── configure_ac.patch │ │ └── curl_7.51.0.bb │ ├── db │ │ ├── db │ │ │ ├── Makefile-let-libdb-6.0.la-depend-os_map.l.patch │ │ │ ├── Makefile-let-libso_target-depend-on-bt_rec.patch │ │ │ ├── arm-thumb-mutex_db5.patch │ │ │ └── fix-parallel-build.patch │ │ ├── db_5.3.28.bb │ │ └── db_6.0.35.bb │ ├── debianutils │ │ └── debianutils_4.8.bb │ ├── enchant │ │ └── enchant_1.6.0.bb │ ├── gdbm │ │ ├── files │ │ │ ├── ptest.patch │ │ │ └── run-ptest │ │ ├── gdbm-1.8.3 │ │ │ ├── ldflags.patch │ │ │ ├── libtool-mode.patch │ │ │ └── makefile.patch │ │ ├── gdbm_1.12.bb │ │ └── gdbm_1.8.3.bb │ ├── gmp │ │ ├── gmp-4.2.1 │ │ │ ├── Use-__gnu_inline__-attribute.patch │ │ │ ├── avoid-h-asm-constraint-for-MIPS.patch │ │ │ └── gmp_fix_for_automake-1.12.patch │ │ ├── gmp-6.1.1 │ │ │ ├── 0001-Append-the-user-provided-flags-to-the-auto-detected-.patch │ │ │ ├── 0001-confiure.ac-Believe-the-cflags-from-environment.patch │ │ │ ├── amd64.patch │ │ │ └── use-includedir.patch │ │ ├── gmp.inc │ │ ├── gmp_4.2.1.bb │ │ └── gmp_6.1.1.bb │ ├── gnome-desktop-testing │ │ ├── gnome-desktop-testing │ │ │ ├── 0001-gsystem-subprocess.c-Enable-GNU-extensions-in-system.patch │ │ │ └── update-output-syntax.patch │ │ └── gnome-desktop-testing_2014.1.bb │ ├── gnupg │ │ ├── gnupg-1.4.7 │ │ │ ├── CVE-2013-4242.patch │ │ │ ├── CVE-2013-4351.patch │ │ │ ├── CVE-2013-4576.patch │ │ │ ├── GnuPG1-CVE-2012-6085.patch │ │ │ ├── configure.patch │ │ │ ├── curl_typeof_fix_backport.patch │ │ │ ├── long-long-thumb.patch │ │ │ └── mips_gcc4.4.patch │ │ ├── gnupg │ │ │ ├── autogen.sh-fix-find-version-for-beta-checking.patch │ │ │ ├── dirmngr-uses-libgpg-error.patch │ │ │ ├── pkgconfig.patch │ │ │ └── use-pkgconfig-instead-of-npth-config.patch │ │ ├── gnupg_1.4.7.bb │ │ └── gnupg_2.1.14.bb │ ├── gnutls │ │ ├── gnutls.inc │ │ ├── gnutls │ │ │ ├── 0001-configure.ac-fix-sed-command.patch │ │ │ ├── correct_rpl_gettimeofday_signature.patch │ │ │ └── use-pkg-config-to-locate-zlib.patch │ │ ├── gnutls_3.5.6.bb │ │ ├── libtasn1 │ │ │ ├── 0001-configure-don-t-add-Werror-to-build-flags.patch │ │ │ ├── 0002-ASN.y-corrected-compiler-warning.patch │ │ │ ├── 0003-parser_aux-corrected-potential-null-pointer-derefere.patch │ │ │ ├── 0004-tools-eliminated-compiler-warnings.patch │ │ │ └── dont-depend-on-help2man.patch │ │ └── libtasn1_4.9.bb │ ├── gpgme │ │ ├── gpgme │ │ │ ├── gpgme.pc │ │ │ └── pkgconfig.patch │ │ └── gpgme_1.6.0.bb │ ├── icu │ │ ├── icu.inc │ │ ├── icu │ │ │ ├── 0001-Disable-LDFLAGSICUDT-for-Linux.patch │ │ │ ├── fix-install-manx.patch │ │ │ └── icu-pkgdata-large-cmd.patch │ │ └── icu_58.1.bb │ ├── iso-codes │ │ └── iso-codes_3.71.bb │ ├── libassuan │ │ ├── libassuan │ │ │ └── libassuan-add-pkgconfig-support.patch │ │ └── libassuan_2.4.3.bb │ ├── libatomic-ops │ │ ├── libatomic-ops │ │ │ └── 0001-Add-initial-nios2-architecture-support.patch │ │ └── libatomic-ops_7.4.4.bb │ ├── libbsd │ │ ├── libbsd │ │ │ ├── 0001-Replace-__BEGIN_DECLS-and-__END_DECLS.patch │ │ │ ├── 0002-Remove-funopen.patch │ │ │ └── 0003-Fix-build-breaks-due-to-missing-a.out.h.patch │ │ └── libbsd_0.8.3.bb │ ├── libcap-ng │ │ ├── libcap-ng │ │ │ └── python.patch │ │ └── libcap-ng_0.7.8.bb │ ├── libcap │ │ ├── files │ │ │ └── 0001-ensure-the-XATTR_NAME_CAPS-is-defined-when-it-is-use.patch │ │ └── libcap_2.25.bb │ ├── libcheck │ │ └── libcheck_0.10.0.bb │ ├── libcroco │ │ └── libcroco_0.6.11.bb │ ├── libdaemon │ │ ├── libdaemon │ │ │ └── fix-includes.patch │ │ └── libdaemon_0.14.bb │ ├── libevdev │ │ └── libevdev_1.5.4.bb │ ├── libevent │ │ ├── libevent │ │ │ └── run-ptest │ │ └── libevent_2.0.22.bb │ ├── libexif │ │ └── libexif_0.6.21.bb │ ├── libffi │ │ ├── libffi │ │ │ ├── 0001-mips-Use-compiler-internal-define-for-linux.patch │ │ │ ├── 0001-mips-fix-MIPS-softfloat-build-issue.patch │ │ │ └── not-win32.patch │ │ └── libffi_3.2.1.bb │ ├── libfm │ │ ├── libfm-extra │ │ │ └── 0001-nls.m4-Take-it-from-gettext-0.15.patch │ │ ├── libfm-extra_1.2.4.bb │ │ └── libfm_1.2.4.bb │ ├── libgcrypt │ │ ├── files │ │ │ ├── add-pkgconfig-support.patch │ │ │ ├── fix-ICE-failure-on-mips-with-option-O-and-g.patch │ │ │ ├── fix-undefined-reference-to-pthread.patch │ │ │ └── libgcrypt-fix-building-error-with-O2-in-sysroot-path.patch │ │ ├── libgcrypt.inc │ │ └── libgcrypt_1.7.3.bb │ ├── libgpg-error │ │ ├── libgpg-error │ │ │ └── pkgconfig.patch │ │ └── libgpg-error_1.25.bb │ ├── libical │ │ ├── libical │ │ │ ├── 0001-CMakeLists.txt-libical.pc.in-fix-iculibs-remove-full.patch │ │ │ └── Remove-cmake-check-for-Perl.patch │ │ └── libical_2.0.0.bb │ ├── libiconv │ │ ├── libiconv-1.11.1 │ │ │ ├── autoconf.patch │ │ │ └── shared_preloadable_libiconv_linux.patch │ │ ├── libiconv-1.14 │ │ │ ├── add-relocatable-module.patch │ │ │ └── autoconf.patch │ │ ├── libiconv_1.11.1.bb │ │ └── libiconv_1.14.bb │ ├── libksba │ │ ├── libksba │ │ │ └── ksba-add-pkgconfig-support.patch │ │ └── libksba_1.3.5.bb │ ├── libmpc │ │ ├── libmpc.inc │ │ └── libmpc_1.0.3.bb │ ├── libnl │ │ ├── libnl │ │ │ ├── 0001-lib-add-utility-function-nl_strerror_l.patch │ │ │ ├── 0002-lib-switch-to-using-strerror_l-instead-of-strerror_r.patch │ │ │ ├── 0003-src-switch-to-using-strerror_l-instead-of-strerror_r.patch │ │ │ ├── fix-pc-file.patch │ │ │ └── fix-pktloc_syntax_h-race.patch │ │ └── libnl_3.2.28.bb │ ├── libpcre │ │ ├── libpcre │ │ │ ├── Makefile │ │ │ ├── fix-pcre-name-collision.patch │ │ │ ├── pcre-cross.patch │ │ │ └── run-ptest │ │ └── libpcre_8.39.bb │ ├── libproxy │ │ └── libproxy_0.4.13.bb │ ├── libsoup │ │ └── libsoup-2.4_2.56.0.bb │ ├── libunistring │ │ ├── libunistring │ │ │ ├── 0001-Unset-need_charset_alias-when-building-for-musl.patch │ │ │ └── iconv-m4-remove-the-test-to-convert-euc-jp.patch │ │ └── libunistring_0.9.6.bb │ ├── libunwind │ │ ├── libunwind.inc │ │ ├── libunwind │ │ │ ├── 0001-Fix-build-on-mips-musl.patch │ │ │ ├── 0001-add-knobs-to-disable-enable-tests.patch │ │ │ ├── 0001-backtrace-Use-only-with-glibc-and-uclibc.patch │ │ │ ├── 0001-ppc32-Consider-ucontext-mismatches-between-glibc-and.patch │ │ │ ├── 0001-x86-Stub-out-x86_local_resume.patch │ │ │ ├── Add-AO_REQUIRE_CAS-to-fix-build-on-ARM-v6.patch │ │ │ └── musl-header-conflict.patch │ │ └── libunwind_git.bb │ ├── liburcu │ │ ├── liburcu │ │ │ ├── 0001-Support-for-NIOS2-architecture.patch │ │ │ └── 0002-Support-for-aarch64_be.patch │ │ └── liburcu_0.9.2.bb │ ├── libusb │ │ ├── libusb-compat │ │ │ └── 0001-usb.h-Include-sys-types.h.patch │ │ ├── libusb-compat_0.1.5.bb │ │ ├── libusb1 │ │ │ └── no-dll.patch │ │ └── libusb1_1.0.20.bb │ ├── libxslt │ │ ├── libxslt │ │ │ ├── 0001-Use-pkg-config-to-find-gcrypt-and-libxml2.patch │ │ │ └── pkgconfig_fix.patch │ │ └── libxslt_1.1.29.bb │ ├── libyaml │ │ └── libyaml_0.1.7.bb │ ├── lz4 │ │ └── lz4.bb │ ├── lzo │ │ ├── lzo │ │ │ ├── 0001-Use-memcpy-instead-of-reinventing-it.patch │ │ │ ├── acinclude.m4 │ │ │ └── run-ptest │ │ └── lzo_2.09.bb │ ├── lzop │ │ ├── lzop │ │ │ ├── 0001-use-static-inlines-as-the-external-inline-definition.patch │ │ │ ├── acinclude.m4 │ │ │ ├── lzop-1.03-gcc6.patch │ │ │ └── x32_abi_miniacc_h.patch │ │ └── lzop_1.03.bb │ ├── mpfr │ │ ├── mpfr.inc │ │ ├── mpfr │ │ │ └── long-long-thumb.patch │ │ └── mpfr_3.1.4.bb │ ├── neon │ │ ├── neon │ │ │ └── pkgconfig.patch │ │ └── neon_0.30.2.bb │ ├── nettle │ │ ├── files │ │ │ ├── Add-target-to-only-build-tests-not-run-them.patch │ │ │ └── run-ptest │ │ ├── nettle-2.7.1 │ │ │ ├── CVE-2015-8803_8805.patch │ │ │ └── CVE-2015-8804.patch │ │ ├── nettle.inc │ │ ├── nettle_2.7.1.bb │ │ └── nettle_3.3.bb │ ├── npth │ │ ├── npth │ │ │ └── pkgconfig.patch │ │ └── npth_1.3.bb │ ├── nspr │ │ ├── nspr │ │ │ ├── 0002-Add-nios2-support.patch │ │ │ ├── fix-build-on-x86_64.patch │ │ │ ├── nspr.pc.in │ │ │ ├── remove-rpath-from-tests.patch │ │ │ └── remove-srcdir-from-configure-in.patch │ │ └── nspr_4.13.1.bb │ ├── nss-myhostname │ │ ├── nss-myhostname │ │ │ └── 0001-nss-myhostname-Check-for-nss.h-presense-before-use.patch │ │ └── nss-myhostname_0.3.bb │ ├── nss │ │ ├── nss │ │ │ ├── disable-Wvarargs-with-clang.patch │ │ │ ├── nss-fix-incorrect-shebang-of-perl.patch │ │ │ ├── nss-fix-nsinstall-build.patch │ │ │ ├── nss-fix-support-cross-compiling.patch │ │ │ ├── nss-no-rpath-for-cross-compiling.patch │ │ │ ├── nss.pc.in │ │ │ ├── pqg.c-ULL_addend.patch │ │ │ └── signlibs.sh │ │ └── nss_3.27.1.bb │ ├── p11-kit │ │ └── p11-kit_0.22.1.bb │ ├── pinentry │ │ └── pinentry_0.9.2.bb │ ├── popt │ │ ├── popt │ │ │ ├── disable_tests.patch │ │ │ ├── pkgconfig_fix.patch │ │ │ └── popt_fix_for_automake-1.12.patch │ │ └── popt_1.16.bb │ ├── ptest-runner │ │ └── ptest-runner_2.0.bb │ ├── rng-tools │ │ ├── rng-tools │ │ │ ├── 0001-If-the-libc-is-lacking-argp-use-libargp.patch │ │ │ ├── 0002-Add-argument-to-control-the-libargp-dependency.patch │ │ │ ├── default │ │ │ ├── init │ │ │ ├── uclibc-libuargp-configure.patch │ │ │ └── underquote.patch │ │ └── rng-tools_5.bb │ ├── serf │ │ ├── serf │ │ │ ├── env.patch │ │ │ └── norpath.patch │ │ └── serf_1.3.9.bb │ ├── shared-mime-info │ │ ├── shared-mime-info.inc │ │ ├── shared-mime-info │ │ │ ├── install-data-hook.patch │ │ │ └── parallelmake.patch │ │ └── shared-mime-info_1.6.bb │ ├── source-highlight │ │ ├── files │ │ │ └── 0001-source-highlight.pc.in-do-not-add-Boost-s-libraries-.patch │ │ └── source-highlight_3.1.8.bb │ ├── sqlite │ │ ├── files │ │ │ └── 0001-revert-ad601c7962-that-brings-2-increase-of-build-ti.patch │ │ ├── sqlite3.inc │ │ └── sqlite3_3.14.1.bb │ ├── taglib │ │ └── taglib_1.11.1.bb │ ├── user-creation │ │ ├── files │ │ │ └── system-xuser.conf │ │ └── xuser-account_0.1.bb │ └── vte │ │ ├── vte │ │ ├── 0001-Add-m4-vapigen.m4.patch │ │ └── 0001-Don-t-enable-stack-protection-by-default.patch │ │ └── vte_0.44.2.bb ├── recipes.txt └── site │ ├── arm-32 │ ├── arm-64 │ ├── arm-common │ ├── arm-darwin │ ├── arm-darwin8 │ ├── arm-linux │ ├── arm-linux-uclibc │ ├── armeb-linux │ ├── armeb-linux-uclibc │ ├── common │ ├── common-darwin │ ├── common-glibc │ ├── common-linux │ ├── common-mingw │ ├── common-musl │ ├── common-uclibc │ ├── endian-big │ ├── endian-little │ ├── ix86-common │ ├── mips-common │ ├── mips-linux │ ├── mips-linux-uclibc │ ├── mips64-linux │ ├── mips64-linux-uclibc │ ├── mips64el-linux │ ├── mips64el-linux-uclibc │ ├── mipsel-linux │ ├── mipsel-linux-uclibc │ ├── mipsisa32r6-linux │ ├── mipsisa32r6el-linux │ ├── mipsisa64r6-linux │ ├── mipsisa64r6el-linux │ ├── native │ ├── nios2-linux │ ├── powerpc-common │ ├── powerpc-darwin │ ├── powerpc-linux │ ├── powerpc32-linux │ ├── powerpc64-linux │ ├── sh-common │ ├── sparc-linux │ ├── x32-linux │ ├── x86_64-linux │ └── x86_64-linux-uclibc ├── oe-init-build-env ├── oe-init-build-env-memres └── scripts ├── README ├── bitbake-prserv-tool ├── bitbake-whatchanged ├── buildhistory-collect-srcrevs ├── buildhistory-diff ├── buildstats-diff ├── cleanup-workdir ├── combo-layer ├── combo-layer-hook-default.sh ├── combo-layer.conf.example ├── contrib ├── bb-perf │ ├── bb-matrix-plot.sh │ ├── bb-matrix.sh │ ├── buildstats-plot.sh │ └── buildstats.sh ├── bbvars.py ├── build-perf-test-wrapper.sh ├── build-perf-test.sh ├── ddimage ├── devtool-stress.py ├── dialog-power-control ├── documentation-audit.sh ├── graph-tool ├── list-packageconfig-flags.py ├── mkefidisk.sh ├── python │ ├── generate-manifest-2.7.py │ └── generate-manifest-3.5.py ├── serdevtry ├── test_build_time.sh ├── test_build_time_worker.sh ├── uncovered └── verify-homepage.py ├── cp-noerror ├── create-pull-request ├── crosstap ├── devtool ├── gen-lockedsig-cache ├── gen-site-config ├── lib ├── argparse_oe.py ├── devtool │ ├── __init__.py │ ├── build.py │ ├── build_image.py │ ├── build_sdk.py │ ├── deploy.py │ ├── package.py │ ├── runqemu.py │ ├── sdk.py │ ├── search.py │ ├── standard.py │ ├── upgrade.py │ └── utilcmds.py ├── recipetool │ ├── __init__.py │ ├── append.py │ ├── create.py │ ├── create_buildsys.py │ ├── create_buildsys_python.py │ ├── create_kernel.py │ ├── create_kmod.py │ ├── create_npm.py │ ├── newappend.py │ └── setvar.py ├── scriptpath.py ├── scriptutils.py └── wic │ ├── __init__.py │ ├── __version__.py │ ├── canned-wks │ ├── common.wks.inc │ ├── directdisk-bootloader-config.cfg │ ├── directdisk-bootloader-config.wks │ ├── directdisk-gpt.wks │ ├── directdisk-multi-rootfs.wks │ ├── directdisk.wks │ ├── mkefidisk.wks │ ├── mkgummidisk.wks │ ├── mkhybridiso.wks │ ├── qemux86-directdisk.wks │ ├── sdimage-bootpart.wks │ └── systemd-bootdisk.wks │ ├── conf.py │ ├── config │ └── wic.conf │ ├── creator.py │ ├── engine.py │ ├── filemap.py │ ├── help.py │ ├── imager │ ├── __init__.py │ ├── baseimager.py │ └── direct.py │ ├── ksparser.py │ ├── msger.py │ ├── partition.py │ ├── plugin.py │ ├── pluginbase.py │ ├── plugins │ ├── imager │ │ └── direct_plugin.py │ └── source │ │ ├── bootimg-efi.py │ │ ├── bootimg-partition.py │ │ ├── bootimg-pcbios.py │ │ ├── fsimage.py │ │ ├── isoimage-isohybrid.py │ │ ├── rawcopy.py │ │ ├── rootfs.py │ │ └── rootfs_pcbios_ext.py │ ├── test │ └── utils │ ├── __init__.py │ ├── errors.py │ ├── misc.py │ ├── oe │ ├── __init__.py │ └── misc.py │ ├── partitionedfs.py │ ├── runner.py │ └── syslinux.py ├── lnr ├── multilib_header_wrapper.h ├── native-intercept └── chown ├── oe-build-perf-test ├── oe-buildenv-internal ├── oe-check-sstate ├── oe-find-native-sysroot ├── oe-git-proxy ├── oe-gnome-terminal-phonehome ├── oe-pkgdata-util ├── oe-publish-sdk ├── oe-run-native ├── oe-selftest ├── oe-setup-builddir ├── oe-setup-rpmrepo ├── oe-trim-schemas ├── oepydevshell-internal.py ├── opkg-query-helper.py ├── postinst-intercepts ├── postinst_intercept ├── update_font_cache ├── update_gio_module_cache ├── update_icon_cache └── update_pixbuf_cache ├── pybootchartgui ├── AUTHORS ├── COPYING ├── MAINTAINERS ├── NEWS ├── README.pybootchart ├── pybootchartgui.py └── pybootchartgui │ ├── __init__.py │ ├── batch.py │ ├── draw.py │ ├── gui.py │ ├── main.py │ ├── main.py.in │ ├── parsing.py │ ├── process_tree.py │ ├── samples.py │ └── tests │ ├── parser_test.py │ └── process_tree_test.py ├── pythondeps ├── recipetool ├── relocate_sdk.py ├── rootfs_rpm-extract-postinst.awk ├── rpm2cpio.sh ├── runqemu ├── runqemu-addptable2image ├── runqemu-export-rootfs ├── runqemu-extract-sdk ├── runqemu-gen-tapdevs ├── runqemu-ifdown ├── runqemu-ifup ├── runqemu.README ├── send-error-report ├── send-pull-request ├── sstate-cache-management.sh ├── sstate-diff-machines.sh ├── sstate-sysroot-cruft.sh ├── swupd-http-server ├── sysroot-relativelinks.py ├── task-time ├── test-dependencies.sh ├── test-reexec ├── test-remote-image ├── tiny ├── dirsize.py └── ksize.py ├── verify-bashisms ├── wic └── wipe-sysroot /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/.gitignore -------------------------------------------------------------------------------- /.templateconf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/.templateconf -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/README.rst -------------------------------------------------------------------------------- /bitbake/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/bitbake/.gitignore -------------------------------------------------------------------------------- /bitbake/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/bitbake/AUTHORS -------------------------------------------------------------------------------- /bitbake/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/bitbake/COPYING -------------------------------------------------------------------------------- /bitbake/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/bitbake/ChangeLog -------------------------------------------------------------------------------- /bitbake/HEADER: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/bitbake/HEADER -------------------------------------------------------------------------------- /bitbake/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/bitbake/LICENSE -------------------------------------------------------------------------------- /bitbake/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/bitbake/MANIFEST.in -------------------------------------------------------------------------------- /bitbake/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/bitbake/TODO -------------------------------------------------------------------------------- /bitbake/bin/bitbake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/bitbake/bin/bitbake -------------------------------------------------------------------------------- /bitbake/bin/bitbake-diffsigs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/bitbake/bin/bitbake-diffsigs -------------------------------------------------------------------------------- /bitbake/bin/bitbake-dumpsig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/bitbake/bin/bitbake-dumpsig -------------------------------------------------------------------------------- /bitbake/bin/bitbake-layers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/bitbake/bin/bitbake-layers -------------------------------------------------------------------------------- /bitbake/bin/bitbake-prserv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/bitbake/bin/bitbake-prserv -------------------------------------------------------------------------------- /bitbake/bin/bitbake-selftest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/bitbake/bin/bitbake-selftest -------------------------------------------------------------------------------- /bitbake/bin/bitbake-worker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/bitbake/bin/bitbake-worker -------------------------------------------------------------------------------- /bitbake/bin/bitdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/bitbake/bin/bitdoc -------------------------------------------------------------------------------- /bitbake/bin/toaster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/bitbake/bin/toaster -------------------------------------------------------------------------------- /bitbake/bin/toaster-eventreplay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/bitbake/bin/toaster-eventreplay -------------------------------------------------------------------------------- /bitbake/classes/base.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/bitbake/classes/base.bbclass -------------------------------------------------------------------------------- /bitbake/conf/bitbake.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/bitbake/conf/bitbake.conf -------------------------------------------------------------------------------- /bitbake/contrib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/bitbake/contrib/README -------------------------------------------------------------------------------- /bitbake/contrib/bbdev.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/bitbake/contrib/bbdev.sh -------------------------------------------------------------------------------- /bitbake/contrib/dump_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/bitbake/contrib/dump_cache.py -------------------------------------------------------------------------------- /bitbake/doc/COPYING.GPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/bitbake/doc/COPYING.GPL -------------------------------------------------------------------------------- /bitbake/doc/COPYING.MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/bitbake/doc/COPYING.MIT -------------------------------------------------------------------------------- /bitbake/doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/bitbake/doc/Makefile -------------------------------------------------------------------------------- /bitbake/doc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/bitbake/doc/README -------------------------------------------------------------------------------- /bitbake/doc/bitbake.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/bitbake/doc/bitbake.1 -------------------------------------------------------------------------------- /bitbake/doc/poky.ent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/bitbake/doc/poky.ent -------------------------------------------------------------------------------- /bitbake/doc/template/Vera.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/bitbake/doc/template/Vera.ttf -------------------------------------------------------------------------------- /bitbake/doc/template/Vera.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/bitbake/doc/template/Vera.xml -------------------------------------------------------------------------------- /bitbake/doc/template/VeraMoBd.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/bitbake/doc/template/VeraMoBd.ttf -------------------------------------------------------------------------------- /bitbake/doc/template/VeraMoBd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/bitbake/doc/template/VeraMoBd.xml -------------------------------------------------------------------------------- /bitbake/doc/template/VeraMono.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/bitbake/doc/template/VeraMono.ttf -------------------------------------------------------------------------------- /bitbake/doc/template/VeraMono.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/bitbake/doc/template/VeraMono.xml -------------------------------------------------------------------------------- /bitbake/doc/template/db-pdf.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/bitbake/doc/template/db-pdf.xsl -------------------------------------------------------------------------------- /bitbake/doc/template/draft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/bitbake/doc/template/draft.png -------------------------------------------------------------------------------- /bitbake/doc/tools/docbook-to-pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/bitbake/doc/tools/docbook-to-pdf -------------------------------------------------------------------------------- /bitbake/lib/bb/COW.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/bitbake/lib/bb/COW.py -------------------------------------------------------------------------------- /bitbake/lib/bb/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/bitbake/lib/bb/__init__.py -------------------------------------------------------------------------------- /bitbake/lib/bb/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/bitbake/lib/bb/build.py -------------------------------------------------------------------------------- /bitbake/lib/bb/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/bitbake/lib/bb/cache.py -------------------------------------------------------------------------------- /bitbake/lib/bb/cache_extra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/bitbake/lib/bb/cache_extra.py -------------------------------------------------------------------------------- /bitbake/lib/bb/checksum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/bitbake/lib/bb/checksum.py -------------------------------------------------------------------------------- /bitbake/lib/bb/codeparser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/bitbake/lib/bb/codeparser.py -------------------------------------------------------------------------------- /bitbake/lib/bb/command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/bitbake/lib/bb/command.py -------------------------------------------------------------------------------- /bitbake/lib/bb/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/bitbake/lib/bb/compat.py -------------------------------------------------------------------------------- /bitbake/lib/bb/cooker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/bitbake/lib/bb/cooker.py -------------------------------------------------------------------------------- /bitbake/lib/bb/cookerdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/bitbake/lib/bb/cookerdata.py -------------------------------------------------------------------------------- /bitbake/lib/bb/daemonize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/bitbake/lib/bb/daemonize.py -------------------------------------------------------------------------------- /bitbake/lib/bb/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/bitbake/lib/bb/data.py -------------------------------------------------------------------------------- /bitbake/lib/bb/data_smart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/bitbake/lib/bb/data_smart.py -------------------------------------------------------------------------------- /bitbake/lib/bb/event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/bitbake/lib/bb/event.py -------------------------------------------------------------------------------- /bitbake/lib/bb/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/bitbake/lib/bb/exceptions.py -------------------------------------------------------------------------------- /bitbake/lib/bb/fetch2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/bitbake/lib/bb/fetch2/__init__.py -------------------------------------------------------------------------------- /bitbake/lib/bb/fetch2/bzr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/bitbake/lib/bb/fetch2/bzr.py -------------------------------------------------------------------------------- /bitbake/lib/bb/fetch2/cvs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/bitbake/lib/bb/fetch2/cvs.py -------------------------------------------------------------------------------- /bitbake/lib/bb/fetch2/git.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/bitbake/lib/bb/fetch2/git.py -------------------------------------------------------------------------------- /bitbake/lib/bb/fetch2/gitannex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/bitbake/lib/bb/fetch2/gitannex.py -------------------------------------------------------------------------------- /bitbake/lib/bb/fetch2/gitsm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/bitbake/lib/bb/fetch2/gitsm.py -------------------------------------------------------------------------------- /bitbake/lib/bb/fetch2/hg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/bitbake/lib/bb/fetch2/hg.py -------------------------------------------------------------------------------- /bitbake/lib/bb/fetch2/local.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/bitbake/lib/bb/fetch2/local.py -------------------------------------------------------------------------------- /bitbake/lib/bb/fetch2/npm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/bitbake/lib/bb/fetch2/npm.py -------------------------------------------------------------------------------- /bitbake/lib/bb/fetch2/osc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/bitbake/lib/bb/fetch2/osc.py -------------------------------------------------------------------------------- /bitbake/lib/bb/fetch2/perforce.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/bitbake/lib/bb/fetch2/perforce.py -------------------------------------------------------------------------------- /bitbake/lib/bb/fetch2/repo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/bitbake/lib/bb/fetch2/repo.py -------------------------------------------------------------------------------- /bitbake/lib/bb/fetch2/sftp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/bitbake/lib/bb/fetch2/sftp.py -------------------------------------------------------------------------------- /bitbake/lib/bb/fetch2/ssh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/bitbake/lib/bb/fetch2/ssh.py -------------------------------------------------------------------------------- /bitbake/lib/bb/fetch2/svn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/bitbake/lib/bb/fetch2/svn.py -------------------------------------------------------------------------------- /bitbake/lib/bb/fetch2/wget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/bitbake/lib/bb/fetch2/wget.py -------------------------------------------------------------------------------- /bitbake/lib/bb/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/bitbake/lib/bb/main.py -------------------------------------------------------------------------------- /bitbake/lib/bb/methodpool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/bitbake/lib/bb/methodpool.py -------------------------------------------------------------------------------- /bitbake/lib/bb/monitordisk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/bitbake/lib/bb/monitordisk.py -------------------------------------------------------------------------------- /bitbake/lib/bb/msg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/bitbake/lib/bb/msg.py -------------------------------------------------------------------------------- /bitbake/lib/bb/parse/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/bitbake/lib/bb/parse/__init__.py -------------------------------------------------------------------------------- /bitbake/lib/bb/parse/ast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/bitbake/lib/bb/parse/ast.py -------------------------------------------------------------------------------- /bitbake/lib/bb/persist_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/bitbake/lib/bb/persist_data.py -------------------------------------------------------------------------------- /bitbake/lib/bb/process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/bitbake/lib/bb/process.py -------------------------------------------------------------------------------- /bitbake/lib/bb/progress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/bitbake/lib/bb/progress.py -------------------------------------------------------------------------------- /bitbake/lib/bb/providers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/bitbake/lib/bb/providers.py -------------------------------------------------------------------------------- /bitbake/lib/bb/pysh/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bitbake/lib/bb/pysh/builtin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/bitbake/lib/bb/pysh/builtin.py -------------------------------------------------------------------------------- /bitbake/lib/bb/pysh/interp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/bitbake/lib/bb/pysh/interp.py -------------------------------------------------------------------------------- /bitbake/lib/bb/pysh/lsprof.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/bitbake/lib/bb/pysh/lsprof.py -------------------------------------------------------------------------------- /bitbake/lib/bb/pysh/pysh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/bitbake/lib/bb/pysh/pysh.py -------------------------------------------------------------------------------- /bitbake/lib/bb/pysh/pyshlex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/bitbake/lib/bb/pysh/pyshlex.py -------------------------------------------------------------------------------- /bitbake/lib/bb/pysh/pyshyacc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/bitbake/lib/bb/pysh/pyshyacc.py -------------------------------------------------------------------------------- /bitbake/lib/bb/pysh/sherrors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/bitbake/lib/bb/pysh/sherrors.py -------------------------------------------------------------------------------- /bitbake/lib/bb/runqueue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/bitbake/lib/bb/runqueue.py -------------------------------------------------------------------------------- /bitbake/lib/bb/server/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/bitbake/lib/bb/server/__init__.py -------------------------------------------------------------------------------- /bitbake/lib/bb/server/process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/bitbake/lib/bb/server/process.py -------------------------------------------------------------------------------- /bitbake/lib/bb/server/xmlrpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/bitbake/lib/bb/server/xmlrpc.py -------------------------------------------------------------------------------- /bitbake/lib/bb/siggen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/bitbake/lib/bb/siggen.py -------------------------------------------------------------------------------- /bitbake/lib/bb/taskdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/bitbake/lib/bb/taskdata.py -------------------------------------------------------------------------------- /bitbake/lib/bb/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bitbake/lib/bb/tests/cow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/bitbake/lib/bb/tests/cow.py -------------------------------------------------------------------------------- /bitbake/lib/bb/tests/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/bitbake/lib/bb/tests/data.py -------------------------------------------------------------------------------- /bitbake/lib/bb/tests/fetch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/bitbake/lib/bb/tests/fetch.py -------------------------------------------------------------------------------- /bitbake/lib/bb/tests/parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/bitbake/lib/bb/tests/parse.py -------------------------------------------------------------------------------- /bitbake/lib/bb/tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/bitbake/lib/bb/tests/utils.py -------------------------------------------------------------------------------- /bitbake/lib/bb/tinfoil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/bitbake/lib/bb/tinfoil.py -------------------------------------------------------------------------------- /bitbake/lib/bb/ui/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/bitbake/lib/bb/ui/__init__.py -------------------------------------------------------------------------------- /bitbake/lib/bb/ui/depexp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/bitbake/lib/bb/ui/depexp.py -------------------------------------------------------------------------------- /bitbake/lib/bb/ui/knotty.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/bitbake/lib/bb/ui/knotty.py -------------------------------------------------------------------------------- /bitbake/lib/bb/ui/ncurses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/bitbake/lib/bb/ui/ncurses.py -------------------------------------------------------------------------------- /bitbake/lib/bb/ui/toasterui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/bitbake/lib/bb/ui/toasterui.py -------------------------------------------------------------------------------- /bitbake/lib/bb/ui/uievent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/bitbake/lib/bb/ui/uievent.py -------------------------------------------------------------------------------- /bitbake/lib/bb/ui/uihelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/bitbake/lib/bb/ui/uihelper.py -------------------------------------------------------------------------------- /bitbake/lib/bb/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/bitbake/lib/bb/utils.py -------------------------------------------------------------------------------- /bitbake/lib/bblayers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/bitbake/lib/bblayers/__init__.py -------------------------------------------------------------------------------- /bitbake/lib/bblayers/action.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/bitbake/lib/bblayers/action.py -------------------------------------------------------------------------------- /bitbake/lib/bblayers/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/bitbake/lib/bblayers/common.py -------------------------------------------------------------------------------- /bitbake/lib/bblayers/query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/bitbake/lib/bblayers/query.py -------------------------------------------------------------------------------- /bitbake/lib/bs4/AUTHORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/bitbake/lib/bs4/AUTHORS.txt -------------------------------------------------------------------------------- /bitbake/lib/bs4/COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/bitbake/lib/bs4/COPYING.txt -------------------------------------------------------------------------------- /bitbake/lib/bs4/NEWS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/bitbake/lib/bs4/NEWS.txt -------------------------------------------------------------------------------- /bitbake/lib/bs4/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/bitbake/lib/bs4/__init__.py -------------------------------------------------------------------------------- /bitbake/lib/bs4/builder/_lxml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/bitbake/lib/bs4/builder/_lxml.py -------------------------------------------------------------------------------- /bitbake/lib/bs4/dammit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/bitbake/lib/bs4/dammit.py -------------------------------------------------------------------------------- /bitbake/lib/bs4/diagnose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/bitbake/lib/bs4/diagnose.py -------------------------------------------------------------------------------- /bitbake/lib/bs4/element.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/bitbake/lib/bs4/element.py -------------------------------------------------------------------------------- /bitbake/lib/bs4/testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/bitbake/lib/bs4/testing.py -------------------------------------------------------------------------------- /bitbake/lib/bs4/tests/__init__.py: -------------------------------------------------------------------------------- 1 | "The beautifulsoup tests." 2 | -------------------------------------------------------------------------------- /bitbake/lib/codegen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/bitbake/lib/codegen.py -------------------------------------------------------------------------------- /bitbake/lib/ply/lex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/bitbake/lib/ply/lex.py -------------------------------------------------------------------------------- /bitbake/lib/ply/yacc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/bitbake/lib/ply/yacc.py -------------------------------------------------------------------------------- /bitbake/lib/progressbar/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/bitbake/lib/progressbar/compat.py -------------------------------------------------------------------------------- /bitbake/lib/prserv/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/bitbake/lib/prserv/__init__.py -------------------------------------------------------------------------------- /bitbake/lib/prserv/db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/bitbake/lib/prserv/db.py -------------------------------------------------------------------------------- /bitbake/lib/prserv/serv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/bitbake/lib/prserv/serv.py -------------------------------------------------------------------------------- /bitbake/lib/pyinotify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/bitbake/lib/pyinotify.py -------------------------------------------------------------------------------- /bitbake/lib/toaster/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bitbake/lib/toaster/bldcollector/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bitbake/lib/toaster/bldcontrol/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bitbake/lib/toaster/bldcontrol/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bitbake/lib/toaster/bldcontrol/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bitbake/lib/toaster/bldcontrol/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bitbake/lib/toaster/bldcontrol/views.py: -------------------------------------------------------------------------------- 1 | # Create your views here. 2 | -------------------------------------------------------------------------------- /bitbake/lib/toaster/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/bitbake/lib/toaster/manage.py -------------------------------------------------------------------------------- /bitbake/lib/toaster/orm/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bitbake/lib/toaster/orm/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bitbake/lib/toaster/orm/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bitbake/lib/toaster/orm/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bitbake/lib/toaster/orm/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/bitbake/lib/toaster/orm/models.py -------------------------------------------------------------------------------- /bitbake/lib/toaster/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bitbake/lib/toaster/tests/browser/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bitbake/lib/toaster/tests/builds/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bitbake/lib/toaster/tests/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bitbake/lib/toaster/tests/db/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bitbake/lib/toaster/tests/functional/README: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bitbake/lib/toaster/tests/toaster-tests-requirements.txt: -------------------------------------------------------------------------------- 1 | selenium==2.49.2 2 | -------------------------------------------------------------------------------- /bitbake/lib/toaster/tests/views/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bitbake/lib/toaster/toastergui/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bitbake/lib/toaster/toastergui/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bitbake/lib/toaster/toastermain/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bitbake/lib/toaster/toastermain/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bitbake/lib/toaster/toastermain/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bitbake/toaster-requirements.txt: -------------------------------------------------------------------------------- 1 | Django>1.8,<1.9 2 | beautifulsoup4>=4.4.0 3 | pytz 4 | -------------------------------------------------------------------------------- /conf/.gitignore: -------------------------------------------------------------------------------- 1 | combo-layer-local.conf 2 | -------------------------------------------------------------------------------- /conf/combo-layer.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/conf/combo-layer.conf -------------------------------------------------------------------------------- /conf/combo-layerhook-generic.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/conf/combo-layerhook-generic.sh -------------------------------------------------------------------------------- /doc/.gitignore: -------------------------------------------------------------------------------- 1 | # ignore sphinx output folder 2 | _build/ 3 | -------------------------------------------------------------------------------- /doc/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/doc/README.rst -------------------------------------------------------------------------------- /doc/architecture/.keepme: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/architecture/architecture.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/doc/architecture/architecture.rst -------------------------------------------------------------------------------- /doc/architecture/disk-layout.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/doc/architecture/disk-layout.rst -------------------------------------------------------------------------------- /doc/architecture/efi-boot.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/doc/architecture/efi-boot.rst -------------------------------------------------------------------------------- /doc/hardware/hardware.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/doc/hardware/hardware.rst -------------------------------------------------------------------------------- /doc/hardware/sensors.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/doc/hardware/sensors.rst -------------------------------------------------------------------------------- /doc/howtos/.keepme: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/howtos/app-dev-nodejs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/doc/howtos/app-dev-nodejs.rst -------------------------------------------------------------------------------- /doc/howtos/authorized-keys.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/doc/howtos/authorized-keys.rst -------------------------------------------------------------------------------- /doc/howtos/building-images.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/doc/howtos/building-images.rst -------------------------------------------------------------------------------- /doc/howtos/doc-guidelines.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/doc/howtos/doc-guidelines.rst -------------------------------------------------------------------------------- /doc/howtos/howtos.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/doc/howtos/howtos.rst -------------------------------------------------------------------------------- /doc/howtos/ip-address-config.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/doc/howtos/ip-address-config.rst -------------------------------------------------------------------------------- /doc/howtos/uefi-secure-boot.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/doc/howtos/uefi-secure-boot.rst -------------------------------------------------------------------------------- /doc/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/doc/index.rst -------------------------------------------------------------------------------- /doc/quick_start/about.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/doc/quick_start/about.rst -------------------------------------------------------------------------------- /doc/quick_start/platforms.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/doc/quick_start/platforms.rst -------------------------------------------------------------------------------- /doc/quick_start/quick_start.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/doc/quick_start/quick_start.rst -------------------------------------------------------------------------------- /doc/sphinx_build/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/doc/sphinx_build/COPYING -------------------------------------------------------------------------------- /doc/sphinx_build/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/doc/sphinx_build/Makefile -------------------------------------------------------------------------------- /doc/sphinx_build/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/doc/sphinx_build/conf.py -------------------------------------------------------------------------------- /doc/sphinx_build/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/doc/sphinx_build/make.bat -------------------------------------------------------------------------------- /meta-appfw/COPYING.MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta-appfw/COPYING.MIT -------------------------------------------------------------------------------- /meta-appfw/README: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /meta-appfw/conf/layer.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta-appfw/conf/layer.conf -------------------------------------------------------------------------------- /meta-appfw/recipes-appfw/example-app-c/files/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = . src 2 | -------------------------------------------------------------------------------- /meta-intel-iot-middleware/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta-intel-iot-middleware/README -------------------------------------------------------------------------------- /meta-intel-iot-security/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | *.pyc 3 | -------------------------------------------------------------------------------- /meta-intel-iot-security/GPL-2.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta-intel-iot-security/GPL-2.0 -------------------------------------------------------------------------------- /meta-intel-iot-security/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta-intel-iot-security/README.md -------------------------------------------------------------------------------- /meta-intel-iot-security/meta-integrity/lib/oeqa/runtime/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /meta-intel-iot-security/meta-security-framework/lib/oeqa/runtime/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /meta-intel-iot-security/meta-security-smack/lib/oeqa/runtime/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /meta-intel/MAINTAINERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta-intel/MAINTAINERS -------------------------------------------------------------------------------- /meta-intel/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta-intel/README -------------------------------------------------------------------------------- /meta-intel/README.sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta-intel/README.sources -------------------------------------------------------------------------------- /meta-intel/classes/rmc-db.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta-intel/classes/rmc-db.bbclass -------------------------------------------------------------------------------- /meta-intel/common/recipes-bsp/formfactor/formfactor_0.0.bbappend: -------------------------------------------------------------------------------- 1 | FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:" 2 | -------------------------------------------------------------------------------- /meta-intel/common/recipes-bsp/rmc/boards/Galileo2/BOOTENTRY.CONFIG: -------------------------------------------------------------------------------- 1 | boot.conf 2 | 3 | -------------------------------------------------------------------------------- /meta-intel/common/recipes-bsp/rmc/boards/minnowmax/BOOTENTRY.CONFIG: -------------------------------------------------------------------------------- 1 | boot.conf 2 | -------------------------------------------------------------------------------- /meta-intel/common/recipes-bsp/rmc/boards/minnowmaxB3/BOOTENTRY.CONFIG: -------------------------------------------------------------------------------- 1 | boot.conf 2 | -------------------------------------------------------------------------------- /meta-intel/common/recipes-bsp/rmc/boards/nucgen6/KBOOTPARAM: -------------------------------------------------------------------------------- 1 | i915.preliminary_hw_support=1 2 | -------------------------------------------------------------------------------- /meta-intel/conf/layer.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta-intel/conf/layer.conf -------------------------------------------------------------------------------- /meta-intel/meta-tlk/COPYING.MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta-intel/meta-tlk/COPYING.MIT -------------------------------------------------------------------------------- /meta-intel/meta-tlk/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta-intel/meta-tlk/README -------------------------------------------------------------------------------- /meta-intel/meta-tlk/recipes-core/base-files/base-files_3.0.14.bbappend: -------------------------------------------------------------------------------- 1 | FILESEXTRAPATHS_prepend := "${THISDIR}/files:" 2 | -------------------------------------------------------------------------------- /meta-intel/meta-tlk/recipes-kernel/linux/linux-yocto_%.bbappend: -------------------------------------------------------------------------------- 1 | require ${PN}_tlk.inc 2 | -------------------------------------------------------------------------------- /meta-iot-web/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta-iot-web/LICENSE -------------------------------------------------------------------------------- /meta-iot-web/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta-iot-web/README.md -------------------------------------------------------------------------------- /meta-iot-web/conf/layer.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta-iot-web/conf/layer.conf -------------------------------------------------------------------------------- /meta-iotqa/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta-iotqa/.gitignore -------------------------------------------------------------------------------- /meta-iotqa/COPYING.MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta-iotqa/COPYING.MIT -------------------------------------------------------------------------------- /meta-iotqa/OstroTestExecution.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta-iotqa/OstroTestExecution.rst -------------------------------------------------------------------------------- /meta-iotqa/README.md: -------------------------------------------------------------------------------- 1 | # meta-iotqa 2 | Layer for Ostro OS QA components 3 | -------------------------------------------------------------------------------- /meta-iotqa/conf/layer.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta-iotqa/conf/layer.conf -------------------------------------------------------------------------------- /meta-iotqa/conf/test/beaglebone.iottest.manifest: -------------------------------------------------------------------------------- 1 | minnowmax.iottest.manifest -------------------------------------------------------------------------------- /meta-iotqa/conf/test/bleno.manifest: -------------------------------------------------------------------------------- 1 | oeqa.runtime.nodejs.bleno 2 | -------------------------------------------------------------------------------- /meta-iotqa/conf/test/bsp.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta-iotqa/conf/test/bsp.manifest -------------------------------------------------------------------------------- /meta-iotqa/conf/test/bsp_galileo.manifest: -------------------------------------------------------------------------------- 1 | oeqa.runtime.bsp.galileo_gen2 2 | -------------------------------------------------------------------------------- /meta-iotqa/conf/test/can.manifest: -------------------------------------------------------------------------------- 1 | oeqa.runtime.can.comm_can_basic 2 | -------------------------------------------------------------------------------- /meta-iotqa/conf/test/coap.manifest: -------------------------------------------------------------------------------- 1 | oeqa.runtime.nodejs.coap -------------------------------------------------------------------------------- /meta-iotqa/conf/test/manual-1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta-iotqa/conf/test/manual-1.csv -------------------------------------------------------------------------------- /meta-iotqa/conf/test/manual.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta-iotqa/conf/test/manual.csv -------------------------------------------------------------------------------- /meta-iotqa/conf/test/misc.manifest: -------------------------------------------------------------------------------- 1 | oeqa.runtime.misc.scm 2 | -------------------------------------------------------------------------------- /meta-iotqa/conf/test/mqtt.manifest: -------------------------------------------------------------------------------- 1 | oeqa.runtime.nodejs.mqtt 2 | -------------------------------------------------------------------------------- /meta-iotqa/conf/test/nodejs-crypto-api.manifest: -------------------------------------------------------------------------------- 1 | oeqa.runtime.nodejs.crypto_api 2 | -------------------------------------------------------------------------------- /meta-iotqa/conf/test/nodejs-gpio.manifest: -------------------------------------------------------------------------------- 1 | #oeqa.runtime.nodejs.soletta_gpio_api_upstream 2 | -------------------------------------------------------------------------------- /meta-iotqa/conf/test/nodejs-i2c.manifest: -------------------------------------------------------------------------------- 1 | #oeqa.runtime.nodejs.soletta_i2c_api_upstream 2 | -------------------------------------------------------------------------------- /meta-iotqa/conf/test/nodejs-pwm.manifest: -------------------------------------------------------------------------------- 1 | #oeqa.runtime.nodejs.soletta_pwm_api_upstream 2 | -------------------------------------------------------------------------------- /meta-iotqa/conf/test/nodejs-spi.manifest: -------------------------------------------------------------------------------- 1 | #oeqa.runtime.nodejs.soletta_spi_api_upstream 2 | -------------------------------------------------------------------------------- /meta-iotqa/conf/test/nodejs-uart.manifest: -------------------------------------------------------------------------------- 1 | #oeqa.runtime.nodejs.soletta_uart_api_upstream 2 | -------------------------------------------------------------------------------- /meta-iotqa/conf/test/pnp.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta-iotqa/conf/test/pnp.manifest -------------------------------------------------------------------------------- /meta-iotqa/conf/test/restapiserver.manifest: -------------------------------------------------------------------------------- 1 | oeqa.runtime.nodejs.rest_apis 2 | -------------------------------------------------------------------------------- /meta-iotqa/conf/test/solettaplatform.manifest: -------------------------------------------------------------------------------- 1 | #oeqa.runtime.nodejs.soletta_platform_service_upstream 2 | -------------------------------------------------------------------------------- /meta-iotqa/conf/test/virtualbox.iottest.manifest: -------------------------------------------------------------------------------- 1 | minnowmax.iottest.manifest -------------------------------------------------------------------------------- /meta-iotqa/lib/baserunner/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /meta-iotqa/lib/baserunner/controller/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /meta-iotqa/lib/baserunner/util/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /meta-iotqa/lib/doc/README.md: -------------------------------------------------------------------------------- 1 | # meta-iotqa 2 | Layer for Ostro OS QA components 3 | -------------------------------------------------------------------------------- /meta-iotqa/lib/doc/doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta-iotqa/lib/doc/doxygen.conf -------------------------------------------------------------------------------- /meta-iotqa/lib/gen_manifest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta-iotqa/lib/gen_manifest.py -------------------------------------------------------------------------------- /meta-iotqa/lib/oeqa/runtime/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /meta-iotqa/lib/oeqa/runtime/appfw/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /meta-iotqa/lib/oeqa/runtime/bluetooth/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /meta-iotqa/lib/oeqa/runtime/bsp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /meta-iotqa/lib/oeqa/runtime/can/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /meta-iotqa/lib/oeqa/runtime/ethernet/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /meta-iotqa/lib/oeqa/runtime/graphics/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /meta-iotqa/lib/oeqa/runtime/iotivity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /meta-iotqa/lib/oeqa/runtime/misc/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /meta-iotqa/lib/oeqa/runtime/nodejs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /meta-iotqa/lib/oeqa/runtime/nodejs/files/iotivityNode/single_suite.json: -------------------------------------------------------------------------------- 1 | { 2 | "suite": "None" 3 | } -------------------------------------------------------------------------------- /meta-iotqa/lib/oeqa/runtime/pnp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /meta-iotqa/lib/oeqa/runtime/pythonruntime/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /meta-iotqa/lib/oeqa/runtime/sanity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /meta-iotqa/lib/oeqa/runtime/sanity/files/apprt_test_iotivity_node.js: -------------------------------------------------------------------------------- 1 | require('iotivity-node'); -------------------------------------------------------------------------------- /meta-iotqa/lib/oeqa/runtime/security/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /meta-iotqa/lib/oeqa/runtime/sensor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /meta-iotqa/lib/oeqa/runtime/soletta/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /meta-iotqa/lib/oeqa/runtime/wifi/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /meta-iotqa/lib/oeqa/runtime/zigbee/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /meta-iotqa/lib/oeqa/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /meta-iotqa/lib/runtest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta-iotqa/lib/runtest.py -------------------------------------------------------------------------------- /meta-iotqa/lib/xmlrunner/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta-iotqa/lib/xmlrunner/LICENSE -------------------------------------------------------------------------------- /meta-iotqa/lib/xmlrunner/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta-iotqa/lib/xmlrunner/PKG-INFO -------------------------------------------------------------------------------- /meta-iotqa/lib/xmlrunner/extra/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /meta-iotqa/lib/xmlrunner/version.py: -------------------------------------------------------------------------------- 1 | 2 | __version__ = '2.1.0' 3 | -------------------------------------------------------------------------------- /meta-iotqa/recipes-test/bad-groups-app/files/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = . src 2 | -------------------------------------------------------------------------------- /meta-iotqa/recipes-test/hello/hello.bbappend: -------------------------------------------------------------------------------- 1 | inherit deploy-files 2 | DEPLOY_FILES_FROM[target] = "${WORKDIR}/hello" 3 | -------------------------------------------------------------------------------- /meta-java/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta-java/.gitignore -------------------------------------------------------------------------------- /meta-java/COPYING.MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta-java/COPYING.MIT -------------------------------------------------------------------------------- /meta-java/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta-java/README -------------------------------------------------------------------------------- /meta-java/classes/java.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta-java/classes/java.bbclass -------------------------------------------------------------------------------- /meta-java/conf/layer.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta-java/conf/layer.conf -------------------------------------------------------------------------------- /meta-java/licenses/AMD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta-java/licenses/AMD -------------------------------------------------------------------------------- /meta-java/licenses/CDS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta-java/licenses/CDS -------------------------------------------------------------------------------- /meta-java/licenses/CUP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta-java/licenses/CUP -------------------------------------------------------------------------------- /meta-java/licenses/JLEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta-java/licenses/JLEX -------------------------------------------------------------------------------- /meta-java/licenses/RXTXv2.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta-java/licenses/RXTXv2.1 -------------------------------------------------------------------------------- /meta-java/licenses/SUN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta-java/licenses/SUN -------------------------------------------------------------------------------- /meta-oic/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta-oic/COPYING -------------------------------------------------------------------------------- /meta-oic/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta-oic/README -------------------------------------------------------------------------------- /meta-oic/conf/layer.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta-oic/conf/layer.conf -------------------------------------------------------------------------------- /meta-openembedded/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta-openembedded/.gitignore -------------------------------------------------------------------------------- /meta-openembedded/COPYING.MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta-openembedded/COPYING.MIT -------------------------------------------------------------------------------- /meta-openembedded/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta-openembedded/README -------------------------------------------------------------------------------- /meta-openembedded/meta-efl/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta-openembedded/meta-efl/README -------------------------------------------------------------------------------- /meta-openembedded/meta-filesystems/recipes-support/fuse/files/fuse.conf: -------------------------------------------------------------------------------- 1 | fuse 2 | -------------------------------------------------------------------------------- /meta-openembedded/meta-gnome/recipes-devtools/glade/glade3_%.bbappend: -------------------------------------------------------------------------------- 1 | PACKAGECONFIG ??= "gnome" 2 | -------------------------------------------------------------------------------- /meta-openembedded/meta-gpe/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta-openembedded/meta-gpe/README -------------------------------------------------------------------------------- /meta-openembedded/meta-initramfs/recipes-devtools/grubby/grubby/run-ptest: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | ./test.sh -v 4 | -------------------------------------------------------------------------------- /meta-openembedded/meta-networking/recipes-daemons/postfix/files/internal_recipient: -------------------------------------------------------------------------------- 1 | root@ permit_mynetworks,reject 2 | -------------------------------------------------------------------------------- /meta-openembedded/meta-networking/recipes-daemons/radvd/files/radvd.default: -------------------------------------------------------------------------------- 1 | OPTIONS="-u radvd" 2 | -------------------------------------------------------------------------------- /meta-openembedded/meta-networking/recipes-support/ntp/ntp/ntpd.list: -------------------------------------------------------------------------------- 1 | ntpd.service 2 | -------------------------------------------------------------------------------- /meta-openembedded/meta-networking/recipes-support/ntp/ntp/sntp: -------------------------------------------------------------------------------- 1 | NTPSERVER="ntpserver.example.org" 2 | -------------------------------------------------------------------------------- /meta-openembedded/meta-oe/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta-openembedded/meta-oe/README -------------------------------------------------------------------------------- /meta-openembedded/meta-oe/recipes-bsp/pointercal/pointercal/pointercal: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /meta-openembedded/meta-oe/recipes-bsp/pointercal/pointercal/qemux86-64/pointercal: -------------------------------------------------------------------------------- 1 | 1280 0 1002 0 960 328 65536 2 | -------------------------------------------------------------------------------- /meta-openembedded/meta-oe/recipes-bsp/pointercal/pointercal/qemux86/pointercal: -------------------------------------------------------------------------------- 1 | 1280 0 1002 0 960 328 65536 2 | -------------------------------------------------------------------------------- /meta-openembedded/meta-oe/recipes-core/libxml/libxml++/run-ptest: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | cd examples 3 | make -k check-TESTS 4 | -------------------------------------------------------------------------------- /meta-openembedded/meta-oe/recipes-extended/rarpd/rarpd/ethers.sample: -------------------------------------------------------------------------------- 1 | # see man ethers for syntax 2 | -------------------------------------------------------------------------------- /meta-openembedded/meta-oe/recipes-extended/rsyslog/rsyslog/run-ptest: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # 3 | make -C tests -k check-TESTS 4 | -------------------------------------------------------------------------------- /meta-openembedded/meta-oe/recipes-kernel/crash/crash/config-site.crash-7.0.9: -------------------------------------------------------------------------------- 1 | bash_cv_have_mbstate_t=yes 2 | -------------------------------------------------------------------------------- /meta-openembedded/meta-oe/recipes-support/libee/libee/run-ptest: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # 3 | ./ezapi1.sh 4 | -------------------------------------------------------------------------------- /meta-openembedded/meta-oe/recipes-support/pxaregs/pxaregs-1.14/Makefile: -------------------------------------------------------------------------------- 1 | 2 | 3 | all: pxaregs 4 | -------------------------------------------------------------------------------- /meta-openembedded/meta-python/recipes-devtools/python/python-cryptography/run-ptest: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | py.test 3 | -------------------------------------------------------------------------------- /meta-openembedded/meta-python/recipes-devtools/python/python3-cryptography/run-ptest: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | py.test 3 | -------------------------------------------------------------------------------- /meta-openembedded/meta-webserver/recipes-httpd/sthttpd/sthttpd/thttpd.conf: -------------------------------------------------------------------------------- 1 | dir=@@SRVDIR 2 | -------------------------------------------------------------------------------- /meta-ostro-bsp/COPYING.MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta-ostro-bsp/COPYING.MIT -------------------------------------------------------------------------------- /meta-ostro-bsp/MAINTAINERS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /meta-ostro-bsp/README: -------------------------------------------------------------------------------- 1 | This layer is collection of Ostro OS specific BSPs. 2 | 3 | -------------------------------------------------------------------------------- /meta-ostro-bsp/conf/layer.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta-ostro-bsp/conf/layer.conf -------------------------------------------------------------------------------- /meta-ostro-bsp/recipes-core/systemd/files/runtime-watchdog.conf: -------------------------------------------------------------------------------- 1 | [Manager] 2 | RuntimeWatchdogSec=90 3 | -------------------------------------------------------------------------------- /meta-ostro-bsp/recipes-kernel/linux-yocto/linux-yocto-edison.bbappend: -------------------------------------------------------------------------------- 1 | linux-yocto_4.4.bbappend -------------------------------------------------------------------------------- /meta-ostro-bsp/recipes-kernel/linux-yocto/linux-yocto/6lowpan-btle.cfg: -------------------------------------------------------------------------------- 1 | CONFIG_BT_6LOWPAN=m 2 | -------------------------------------------------------------------------------- /meta-ostro-bsp/recipes-kernel/linux-yocto/linux-yocto/6lowpan.cfg: -------------------------------------------------------------------------------- 1 | CONFIG_6LOWPAN=m 2 | -------------------------------------------------------------------------------- /meta-ostro-bsp/recipes-kernel/linux-yocto/linux-yocto/can-spi.cfg: -------------------------------------------------------------------------------- 1 | CONFIG_CAN_MCP251X=m 2 | -------------------------------------------------------------------------------- /meta-ostro-bsp/recipes-kernel/linux-yocto/linux-yocto/debug-fs.cfg: -------------------------------------------------------------------------------- 1 | CONFIG_DEBUG_FS=y 2 | -------------------------------------------------------------------------------- /meta-ostro-bsp/recipes-kernel/linux-yocto/linux-yocto/nspawn-devpts.cfg: -------------------------------------------------------------------------------- 1 | CONFIG_DEVPTS_MULTIPLE_INSTANCES=y 2 | -------------------------------------------------------------------------------- /meta-ostro-bsp/recipes-kernel/linux-yocto/linux-yocto/nspawn-fs.cfg: -------------------------------------------------------------------------------- 1 | CONFIG_OVERLAY_FS=y 2 | -------------------------------------------------------------------------------- /meta-ostro-bsp/recipes-kernel/linux-yocto/linux-yocto/security-tpm.cfg: -------------------------------------------------------------------------------- 1 | CONFIG_TCG_CRB=y 2 | -------------------------------------------------------------------------------- /meta-ostro-bsp/recipes-kernel/linux-yocto/linux-yocto/wireless.cfg: -------------------------------------------------------------------------------- 1 | CONFIG_RTL8723BE=m 2 | 3 | -------------------------------------------------------------------------------- /meta-ostro-fixes/conf/layer.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta-ostro-fixes/conf/layer.conf -------------------------------------------------------------------------------- /meta-ostro-fixes/meta-fixes/recipes-kernel/linux/linux/iot-app-fw-nspawn-devpts.cfg: -------------------------------------------------------------------------------- 1 | CONFIG_DEVPTS_MULTIPLE_INSTANCES=y 2 | -------------------------------------------------------------------------------- /meta-ostro-fixes/meta-fixes/recipes-kernel/linux/linux/iot-app-fw-nspawn-fs.cfg: -------------------------------------------------------------------------------- 1 | CONFIG_OVERLAY_FS=y 2 | -------------------------------------------------------------------------------- /meta-ostro/COPYING.MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta-ostro/COPYING.MIT -------------------------------------------------------------------------------- /meta-ostro/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta-ostro/README -------------------------------------------------------------------------------- /meta-ostro/conf/conf-notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta-ostro/conf/conf-notes.txt -------------------------------------------------------------------------------- /meta-ostro/conf/distro/ostro.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta-ostro/conf/distro/ostro.conf -------------------------------------------------------------------------------- /meta-ostro/conf/layer.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta-ostro/conf/layer.conf -------------------------------------------------------------------------------- /meta-ostro/conf/local.conf.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta-ostro/conf/local.conf.sample -------------------------------------------------------------------------------- /meta-ostro/conf/sdk-extra.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta-ostro/conf/sdk-extra.conf -------------------------------------------------------------------------------- /meta-ostro/files/fs-perms.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta-ostro/files/fs-perms.txt -------------------------------------------------------------------------------- /meta-ostro/fixes/meta-java/recipes-core/openjdk/openjre-8_%.bbappend: -------------------------------------------------------------------------------- 1 | openjdk-8_%.bbappend -------------------------------------------------------------------------------- /meta-ostro/lib/devtool/kconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta-ostro/lib/devtool/kconfig.py -------------------------------------------------------------------------------- /meta-ostro/lib/image-dsk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta-ostro/lib/image-dsk.py -------------------------------------------------------------------------------- /meta-ostro/recipes-security/groupcheck-settings-default/files/default-groupcheck.policy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /meta-security-isafw/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | *.pyc 3 | -------------------------------------------------------------------------------- /meta-security-isafw/COPYING.MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta-security-isafw/COPYING.MIT -------------------------------------------------------------------------------- /meta-security-isafw/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta-security-isafw/README.md -------------------------------------------------------------------------------- /meta-security-isafw/lib/isafw/isaplugins/configs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /meta-security-isafw/lib/isafw/isaplugins/configs/kca/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /meta-security-isafw/lib/isafw/isaplugins/configs/la/exceptions: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /meta-selftest/COPYING.MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta-selftest/COPYING.MIT -------------------------------------------------------------------------------- /meta-selftest/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta-selftest/README -------------------------------------------------------------------------------- /meta-selftest/conf/layer.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta-selftest/conf/layer.conf -------------------------------------------------------------------------------- /meta-selftest/lib/devtool/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /meta-selftest/lib/devtool/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta-selftest/lib/devtool/test.py -------------------------------------------------------------------------------- /meta-selftest/recipes-test/devtool/devtool-test-localonly/file1: -------------------------------------------------------------------------------- 1 | The first file 2 | -------------------------------------------------------------------------------- /meta-selftest/recipes-test/devtool/devtool-test-localonly/file2: -------------------------------------------------------------------------------- 1 | The second file 2 | -------------------------------------------------------------------------------- /meta-selftest/recipes-test/devtool/devtool-test-subdir/testfile: -------------------------------------------------------------------------------- 1 | Modified version 2 | -------------------------------------------------------------------------------- /meta-selftest/recipes-test/recipetool/files/file1: -------------------------------------------------------------------------------- 1 | First test file 2 | 123 3 | -------------------------------------------------------------------------------- /meta-selftest/recipes-test/recipetool/files/selftest-replaceme-inst-globfile: -------------------------------------------------------------------------------- 1 | A file matched by a glob in do_install 2 | -------------------------------------------------------------------------------- /meta-selftest/recipes-test/recipetool/files/selftest-replaceme-orig: -------------------------------------------------------------------------------- 1 | Straight through with same nam 2 | -------------------------------------------------------------------------------- /meta-selftest/recipes-test/recipetool/files/selftest-replaceme-src-globfile: -------------------------------------------------------------------------------- 1 | A file matched by a glob in SRC_URI 2 | -------------------------------------------------------------------------------- /meta-selftest/recipes-test/recipetool/files/selftest-replaceme-todir: -------------------------------------------------------------------------------- 1 | File in SRC_URI installed just to directory path 2 | -------------------------------------------------------------------------------- /meta-selftest/recipes-test/recipetool/files/subdir/fileinsubdir: -------------------------------------------------------------------------------- 1 | A file in a subdirectory 2 | -------------------------------------------------------------------------------- /meta-skeleton/COPYING.MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta-skeleton/COPYING.MIT -------------------------------------------------------------------------------- /meta-skeleton/conf/layer.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta-skeleton/conf/layer.conf -------------------------------------------------------------------------------- /meta-skeleton/recipes-core/busybox/busybox/no_rfkill.cfg: -------------------------------------------------------------------------------- 1 | # CONFIG_RFKILL is not set 2 | -------------------------------------------------------------------------------- /meta-skeleton/recipes-kernel/linux/linux-yocto-custom/feature.scc: -------------------------------------------------------------------------------- 1 | patch 0001-linux-version-tweak.patch 2 | -------------------------------------------------------------------------------- /meta-skeleton/recipes-kernel/linux/linux-yocto-custom/smp.cfg: -------------------------------------------------------------------------------- 1 | # CONFIG_SMP is not set 2 | -------------------------------------------------------------------------------- /meta-skeleton/recipes-skeleton/useradd/useradd-example/file1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /meta-skeleton/recipes-skeleton/useradd/useradd-example/file2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /meta-skeleton/recipes-skeleton/useradd/useradd-example/file3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /meta-skeleton/recipes-skeleton/useradd/useradd-example/file4: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /meta-soletta/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta-soletta/AUTHORS -------------------------------------------------------------------------------- /meta-soletta/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta-soletta/LICENSE -------------------------------------------------------------------------------- /meta-soletta/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta-soletta/README.md -------------------------------------------------------------------------------- /meta-soletta/conf/layer.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta-soletta/conf/layer.conf -------------------------------------------------------------------------------- /meta-soletta/recipes-configure/kernel/files/ath9k_htc.cfg: -------------------------------------------------------------------------------- 1 | CONFIG_ATH9K_HTC=m 2 | -------------------------------------------------------------------------------- /meta-soletta/recipes-modules/jsonschema/python3-jsonschema_2.4.0.bb: -------------------------------------------------------------------------------- 1 | require python3-jsonschema.inc 2 | -------------------------------------------------------------------------------- /meta-swupd/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /meta-swupd/COPYING.MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta-swupd/COPYING.MIT -------------------------------------------------------------------------------- /meta-swupd/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta-swupd/README -------------------------------------------------------------------------------- /meta-swupd/conf/layer.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta-swupd/conf/layer.conf -------------------------------------------------------------------------------- /meta-swupd/docs/Guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta-swupd/docs/Guide.md -------------------------------------------------------------------------------- /meta-swupd/docs/Implementation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta-swupd/docs/Implementation.md -------------------------------------------------------------------------------- /meta-swupd/docs/Known Issues.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta-swupd/docs/Known Issues.md -------------------------------------------------------------------------------- /meta-swupd/lib/swupd/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /meta-swupd/lib/swupd/bundles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta-swupd/lib/swupd/bundles.py -------------------------------------------------------------------------------- /meta-swupd/lib/swupd/path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta-swupd/lib/swupd/path.py -------------------------------------------------------------------------------- /meta-swupd/lib/swupd/rootfs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta-swupd/lib/swupd/rootfs.py -------------------------------------------------------------------------------- /meta-swupd/lib/swupd/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta-swupd/lib/swupd/utils.py -------------------------------------------------------------------------------- /meta-yocto/.templateconf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta-yocto/.templateconf -------------------------------------------------------------------------------- /meta-yocto/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta-yocto/LICENSE -------------------------------------------------------------------------------- /meta-yocto/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta-yocto/README -------------------------------------------------------------------------------- /meta-yocto/README.hardware: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta-yocto/README.hardware -------------------------------------------------------------------------------- /meta-yocto/meta-poky/recipes-core/busybox/busybox_%.bbappend: -------------------------------------------------------------------------------- 1 | FILESEXTRAPATHS_prepend := "${THISDIR}/${BPN}:" 2 | 3 | -------------------------------------------------------------------------------- /meta-yocto/meta-poky/recipes-core/psplash/psplash_git.bbappend: -------------------------------------------------------------------------------- 1 | FILESEXTRAPATHS_prepend_poky := "${THISDIR}/files:" 2 | 3 | -------------------------------------------------------------------------------- /meta-yocto/meta-yocto-bsp/lib/oeqa/controllers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /meta-yocto/meta-yocto-bsp/lib/oeqa/selftest/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /meta-yocto/meta-yocto-bsp/recipes-bsp/formfactor/formfactor_0.0.bbappend: -------------------------------------------------------------------------------- 1 | FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:" 2 | -------------------------------------------------------------------------------- /meta-yocto/meta-yocto-bsp/recipes-graphics/xorg-xserver/xserver-xf86-config/genericx86-64/xorg.conf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /meta-yocto/meta-yocto-bsp/recipes-graphics/xorg-xserver/xserver-xf86-config/genericx86/xorg.conf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /meta-yocto/scripts/lib/bsp/substrate/target/arch/arm/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /meta-yocto/scripts/lib/bsp/substrate/target/arch/common/binary/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /meta-yocto/scripts/lib/bsp/substrate/target/arch/mips/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /meta-yocto/scripts/lib/bsp/substrate/target/arch/mips64/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /meta-yocto/scripts/lib/bsp/substrate/target/arch/powerpc/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /meta-yocto/scripts/lib/bsp/substrate/target/arch/x86_64/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /meta-yocto/scripts/yocto-bsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta-yocto/scripts/yocto-bsp -------------------------------------------------------------------------------- /meta-yocto/scripts/yocto-kernel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta-yocto/scripts/yocto-kernel -------------------------------------------------------------------------------- /meta-yocto/scripts/yocto-layer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta-yocto/scripts/yocto-layer -------------------------------------------------------------------------------- /meta/COPYING.GPLv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/COPYING.GPLv2 -------------------------------------------------------------------------------- /meta/COPYING.MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/COPYING.MIT -------------------------------------------------------------------------------- /meta/classes/allarch.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/classes/allarch.bbclass -------------------------------------------------------------------------------- /meta/classes/archiver.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/classes/archiver.bbclass -------------------------------------------------------------------------------- /meta/classes/autotools.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/classes/autotools.bbclass -------------------------------------------------------------------------------- /meta/classes/base.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/classes/base.bbclass -------------------------------------------------------------------------------- /meta/classes/bin_package.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/classes/bin_package.bbclass -------------------------------------------------------------------------------- /meta/classes/binconfig.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/classes/binconfig.bbclass -------------------------------------------------------------------------------- /meta/classes/blacklist.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/classes/blacklist.bbclass -------------------------------------------------------------------------------- /meta/classes/bluetooth.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/classes/bluetooth.bbclass -------------------------------------------------------------------------------- /meta/classes/bugzilla.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/classes/bugzilla.bbclass -------------------------------------------------------------------------------- /meta/classes/buildhistory.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/classes/buildhistory.bbclass -------------------------------------------------------------------------------- /meta/classes/buildstats.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/classes/buildstats.bbclass -------------------------------------------------------------------------------- /meta/classes/ccache.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/classes/ccache.bbclass -------------------------------------------------------------------------------- /meta/classes/chrpath.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/classes/chrpath.bbclass -------------------------------------------------------------------------------- /meta/classes/clutter.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/classes/clutter.bbclass -------------------------------------------------------------------------------- /meta/classes/cmake.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/classes/cmake.bbclass -------------------------------------------------------------------------------- /meta/classes/cml1.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/classes/cml1.bbclass -------------------------------------------------------------------------------- /meta/classes/compress_doc.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/classes/compress_doc.bbclass -------------------------------------------------------------------------------- /meta/classes/core-image.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/classes/core-image.bbclass -------------------------------------------------------------------------------- /meta/classes/cpan-base.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/classes/cpan-base.bbclass -------------------------------------------------------------------------------- /meta/classes/cpan.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/classes/cpan.bbclass -------------------------------------------------------------------------------- /meta/classes/cpan_build.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/classes/cpan_build.bbclass -------------------------------------------------------------------------------- /meta/classes/cross.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/classes/cross.bbclass -------------------------------------------------------------------------------- /meta/classes/crosssdk.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/classes/crosssdk.bbclass -------------------------------------------------------------------------------- /meta/classes/cve-check.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/classes/cve-check.bbclass -------------------------------------------------------------------------------- /meta/classes/debian.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/classes/debian.bbclass -------------------------------------------------------------------------------- /meta/classes/deploy.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/classes/deploy.bbclass -------------------------------------------------------------------------------- /meta/classes/devshell.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/classes/devshell.bbclass -------------------------------------------------------------------------------- /meta/classes/distrodata.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/classes/distrodata.bbclass -------------------------------------------------------------------------------- /meta/classes/distutils.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/classes/distutils.bbclass -------------------------------------------------------------------------------- /meta/classes/distutils3.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/classes/distutils3.bbclass -------------------------------------------------------------------------------- /meta/classes/externalsrc.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/classes/externalsrc.bbclass -------------------------------------------------------------------------------- /meta/classes/extrausers.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/classes/extrausers.bbclass -------------------------------------------------------------------------------- /meta/classes/fontcache.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/classes/fontcache.bbclass -------------------------------------------------------------------------------- /meta/classes/fs-uuid.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/classes/fs-uuid.bbclass -------------------------------------------------------------------------------- /meta/classes/gconf.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/classes/gconf.bbclass -------------------------------------------------------------------------------- /meta/classes/gettext.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/classes/gettext.bbclass -------------------------------------------------------------------------------- /meta/classes/gnome.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/classes/gnome.bbclass -------------------------------------------------------------------------------- /meta/classes/gnomebase.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/classes/gnomebase.bbclass -------------------------------------------------------------------------------- /meta/classes/grub-efi.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/classes/grub-efi.bbclass -------------------------------------------------------------------------------- /meta/classes/gsettings.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/classes/gsettings.bbclass -------------------------------------------------------------------------------- /meta/classes/gtk-doc.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/classes/gtk-doc.bbclass -------------------------------------------------------------------------------- /meta/classes/gummiboot.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/classes/gummiboot.bbclass -------------------------------------------------------------------------------- /meta/classes/gzipnative.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/classes/gzipnative.bbclass -------------------------------------------------------------------------------- /meta/classes/icecc.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/classes/icecc.bbclass -------------------------------------------------------------------------------- /meta/classes/image-live.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/classes/image-live.bbclass -------------------------------------------------------------------------------- /meta/classes/image-mklibs.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/classes/image-mklibs.bbclass -------------------------------------------------------------------------------- /meta/classes/image-vm.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/classes/image-vm.bbclass -------------------------------------------------------------------------------- /meta/classes/image.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/classes/image.bbclass -------------------------------------------------------------------------------- /meta/classes/image_types.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/classes/image_types.bbclass -------------------------------------------------------------------------------- /meta/classes/insane.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/classes/insane.bbclass -------------------------------------------------------------------------------- /meta/classes/kernel-arch.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/classes/kernel-arch.bbclass -------------------------------------------------------------------------------- /meta/classes/kernel-grub.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/classes/kernel-grub.bbclass -------------------------------------------------------------------------------- /meta/classes/kernel-uboot.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/classes/kernel-uboot.bbclass -------------------------------------------------------------------------------- /meta/classes/kernel-yocto.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/classes/kernel-yocto.bbclass -------------------------------------------------------------------------------- /meta/classes/kernel.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/classes/kernel.bbclass -------------------------------------------------------------------------------- /meta/classes/kernelsrc.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/classes/kernelsrc.bbclass -------------------------------------------------------------------------------- /meta/classes/lib_package.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/classes/lib_package.bbclass -------------------------------------------------------------------------------- /meta/classes/libc-common.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/classes/libc-common.bbclass -------------------------------------------------------------------------------- /meta/classes/libc-package.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/classes/libc-package.bbclass -------------------------------------------------------------------------------- /meta/classes/license.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/classes/license.bbclass -------------------------------------------------------------------------------- /meta/classes/linuxloader.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/classes/linuxloader.bbclass -------------------------------------------------------------------------------- /meta/classes/logging.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/classes/logging.bbclass -------------------------------------------------------------------------------- /meta/classes/manpages.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/classes/manpages.bbclass -------------------------------------------------------------------------------- /meta/classes/meta.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/classes/meta.bbclass -------------------------------------------------------------------------------- /meta/classes/metadata_scm.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/classes/metadata_scm.bbclass -------------------------------------------------------------------------------- /meta/classes/mime.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/classes/mime.bbclass -------------------------------------------------------------------------------- /meta/classes/mirrors.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/classes/mirrors.bbclass -------------------------------------------------------------------------------- /meta/classes/module-base.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/classes/module-base.bbclass -------------------------------------------------------------------------------- /meta/classes/module.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/classes/module.bbclass -------------------------------------------------------------------------------- /meta/classes/multilib.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/classes/multilib.bbclass -------------------------------------------------------------------------------- /meta/classes/native.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/classes/native.bbclass -------------------------------------------------------------------------------- /meta/classes/nativesdk.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/classes/nativesdk.bbclass -------------------------------------------------------------------------------- /meta/classes/nopackages.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/classes/nopackages.bbclass -------------------------------------------------------------------------------- /meta/classes/npm.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/classes/npm.bbclass -------------------------------------------------------------------------------- /meta/classes/oelint.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/classes/oelint.bbclass -------------------------------------------------------------------------------- /meta/classes/own-mirrors.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/classes/own-mirrors.bbclass -------------------------------------------------------------------------------- /meta/classes/package.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/classes/package.bbclass -------------------------------------------------------------------------------- /meta/classes/package_deb.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/classes/package_deb.bbclass -------------------------------------------------------------------------------- /meta/classes/package_ipk.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/classes/package_ipk.bbclass -------------------------------------------------------------------------------- /meta/classes/package_rpm.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/classes/package_rpm.bbclass -------------------------------------------------------------------------------- /meta/classes/package_tar.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/classes/package_tar.bbclass -------------------------------------------------------------------------------- /meta/classes/packagedata.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/classes/packagedata.bbclass -------------------------------------------------------------------------------- /meta/classes/packagegroup.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/classes/packagegroup.bbclass -------------------------------------------------------------------------------- /meta/classes/patch.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/classes/patch.bbclass -------------------------------------------------------------------------------- /meta/classes/perlnative.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/classes/perlnative.bbclass -------------------------------------------------------------------------------- /meta/classes/pixbufcache.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/classes/pixbufcache.bbclass -------------------------------------------------------------------------------- /meta/classes/pkgconfig.bbclass: -------------------------------------------------------------------------------- 1 | DEPENDS_prepend = "pkgconfig-native " 2 | 3 | -------------------------------------------------------------------------------- /meta/classes/populate_sdk.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/classes/populate_sdk.bbclass -------------------------------------------------------------------------------- /meta/classes/prexport.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/classes/prexport.bbclass -------------------------------------------------------------------------------- /meta/classes/primport.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/classes/primport.bbclass -------------------------------------------------------------------------------- /meta/classes/ptest-gnome.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/classes/ptest-gnome.bbclass -------------------------------------------------------------------------------- /meta/classes/ptest.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/classes/ptest.bbclass -------------------------------------------------------------------------------- /meta/classes/python-dir.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/classes/python-dir.bbclass -------------------------------------------------------------------------------- /meta/classes/python3-dir.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/classes/python3-dir.bbclass -------------------------------------------------------------------------------- /meta/classes/pythonnative.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/classes/pythonnative.bbclass -------------------------------------------------------------------------------- /meta/classes/qemu.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/classes/qemu.bbclass -------------------------------------------------------------------------------- /meta/classes/qemuboot.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/classes/qemuboot.bbclass -------------------------------------------------------------------------------- /meta/classes/relocatable.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/classes/relocatable.bbclass -------------------------------------------------------------------------------- /meta/classes/report-error.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/classes/report-error.bbclass -------------------------------------------------------------------------------- /meta/classes/rm_work.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/classes/rm_work.bbclass -------------------------------------------------------------------------------- /meta/classes/rootfs_deb.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/classes/rootfs_deb.bbclass -------------------------------------------------------------------------------- /meta/classes/rootfs_ipk.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/classes/rootfs_ipk.bbclass -------------------------------------------------------------------------------- /meta/classes/rootfs_rpm.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/classes/rootfs_rpm.bbclass -------------------------------------------------------------------------------- /meta/classes/sanity.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/classes/sanity.bbclass -------------------------------------------------------------------------------- /meta/classes/scons.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/classes/scons.bbclass -------------------------------------------------------------------------------- /meta/classes/setuptools.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/classes/setuptools.bbclass -------------------------------------------------------------------------------- /meta/classes/setuptools3.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/classes/setuptools3.bbclass -------------------------------------------------------------------------------- /meta/classes/sign_ipk.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/classes/sign_ipk.bbclass -------------------------------------------------------------------------------- /meta/classes/sign_rpm.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/classes/sign_rpm.bbclass -------------------------------------------------------------------------------- /meta/classes/siteconfig.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/classes/siteconfig.bbclass -------------------------------------------------------------------------------- /meta/classes/siteinfo.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/classes/siteinfo.bbclass -------------------------------------------------------------------------------- /meta/classes/spdx.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/classes/spdx.bbclass -------------------------------------------------------------------------------- /meta/classes/sstate.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/classes/sstate.bbclass -------------------------------------------------------------------------------- /meta/classes/staging.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/classes/staging.bbclass -------------------------------------------------------------------------------- /meta/classes/syslinux.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/classes/syslinux.bbclass -------------------------------------------------------------------------------- /meta/classes/systemd-boot.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/classes/systemd-boot.bbclass -------------------------------------------------------------------------------- /meta/classes/systemd.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/classes/systemd.bbclass -------------------------------------------------------------------------------- /meta/classes/terminal.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/classes/terminal.bbclass -------------------------------------------------------------------------------- /meta/classes/testexport.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/classes/testexport.bbclass -------------------------------------------------------------------------------- /meta/classes/testimage.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/classes/testimage.bbclass -------------------------------------------------------------------------------- /meta/classes/testsdk.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/classes/testsdk.bbclass -------------------------------------------------------------------------------- /meta/classes/texinfo.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/classes/texinfo.bbclass -------------------------------------------------------------------------------- /meta/classes/tinderclient.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/classes/tinderclient.bbclass -------------------------------------------------------------------------------- /meta/classes/toaster.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/classes/toaster.bbclass -------------------------------------------------------------------------------- /meta/classes/typecheck.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/classes/typecheck.bbclass -------------------------------------------------------------------------------- /meta/classes/uboot-config.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/classes/uboot-config.bbclass -------------------------------------------------------------------------------- /meta/classes/uboot-sign.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/classes/uboot-sign.bbclass -------------------------------------------------------------------------------- /meta/classes/uninative.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/classes/uninative.bbclass -------------------------------------------------------------------------------- /meta/classes/update-rc.d.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/classes/update-rc.d.bbclass -------------------------------------------------------------------------------- /meta/classes/useradd.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/classes/useradd.bbclass -------------------------------------------------------------------------------- /meta/classes/useradd_base.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/classes/useradd_base.bbclass -------------------------------------------------------------------------------- /meta/classes/utils.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/classes/utils.bbclass -------------------------------------------------------------------------------- /meta/classes/vala.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/classes/vala.bbclass -------------------------------------------------------------------------------- /meta/classes/waf.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/classes/waf.bbclass -------------------------------------------------------------------------------- /meta/conf/abi_version.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/conf/abi_version.conf -------------------------------------------------------------------------------- /meta/conf/bblayers.conf.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/conf/bblayers.conf.sample -------------------------------------------------------------------------------- /meta/conf/bitbake.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/conf/bitbake.conf -------------------------------------------------------------------------------- /meta/conf/conf-notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/conf/conf-notes.txt -------------------------------------------------------------------------------- /meta/conf/documentation.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/conf/documentation.conf -------------------------------------------------------------------------------- /meta/conf/layer.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/conf/layer.conf -------------------------------------------------------------------------------- /meta/conf/licenses.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/conf/licenses.conf -------------------------------------------------------------------------------- /meta/conf/local.conf.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/conf/local.conf.sample -------------------------------------------------------------------------------- /meta/conf/machine-sdk/i586.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/conf/machine-sdk/i586.conf -------------------------------------------------------------------------------- /meta/conf/machine-sdk/i686.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/conf/machine-sdk/i686.conf -------------------------------------------------------------------------------- /meta/conf/machine-sdk/x86_64.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/conf/machine-sdk/x86_64.conf -------------------------------------------------------------------------------- /meta/conf/machine/include/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/conf/machine/include/README -------------------------------------------------------------------------------- /meta/conf/machine/qemuarm.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/conf/machine/qemuarm.conf -------------------------------------------------------------------------------- /meta/conf/machine/qemuarm64.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/conf/machine/qemuarm64.conf -------------------------------------------------------------------------------- /meta/conf/machine/qemumips.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/conf/machine/qemumips.conf -------------------------------------------------------------------------------- /meta/conf/machine/qemumips64.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/conf/machine/qemumips64.conf -------------------------------------------------------------------------------- /meta/conf/machine/qemuppc.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/conf/machine/qemuppc.conf -------------------------------------------------------------------------------- /meta/conf/machine/qemux86-64.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/conf/machine/qemux86-64.conf -------------------------------------------------------------------------------- /meta/conf/machine/qemux86.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/conf/machine/qemux86.conf -------------------------------------------------------------------------------- /meta/conf/migrate_localcount.conf: -------------------------------------------------------------------------------- 1 | INHERIT += "migrate_localcount" 2 | -------------------------------------------------------------------------------- /meta/conf/multilib.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/conf/multilib.conf -------------------------------------------------------------------------------- /meta/conf/prexport.conf: -------------------------------------------------------------------------------- 1 | INHERIT += "prexport" 2 | -------------------------------------------------------------------------------- /meta/conf/primport.conf: -------------------------------------------------------------------------------- 1 | INHERIT += "primport" 2 | -------------------------------------------------------------------------------- /meta/conf/sanity.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/conf/sanity.conf -------------------------------------------------------------------------------- /meta/conf/site.conf.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/conf/site.conf.sample -------------------------------------------------------------------------------- /meta/files/common-licenses/AAL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/files/common-licenses/AAL -------------------------------------------------------------------------------- /meta/files/common-licenses/Adobe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/files/common-licenses/Adobe -------------------------------------------------------------------------------- /meta/files/common-licenses/BSD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/files/common-licenses/BSD -------------------------------------------------------------------------------- /meta/files/common-licenses/DSSSL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/files/common-licenses/DSSSL -------------------------------------------------------------------------------- /meta/files/common-licenses/Fair: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/files/common-licenses/Fair -------------------------------------------------------------------------------- /meta/files/common-licenses/HPND: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/files/common-licenses/HPND -------------------------------------------------------------------------------- /meta/files/common-licenses/ICU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/files/common-licenses/ICU -------------------------------------------------------------------------------- /meta/files/common-licenses/IPA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/files/common-licenses/IPA -------------------------------------------------------------------------------- /meta/files/common-licenses/ISC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/files/common-licenses/ISC -------------------------------------------------------------------------------- /meta/files/common-licenses/Libpng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/files/common-licenses/Libpng -------------------------------------------------------------------------------- /meta/files/common-licenses/MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/files/common-licenses/MIT -------------------------------------------------------------------------------- /meta/files/common-licenses/MS-PL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/files/common-licenses/MS-PL -------------------------------------------------------------------------------- /meta/files/common-licenses/MS-RL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/files/common-licenses/MS-RL -------------------------------------------------------------------------------- /meta/files/common-licenses/MirOS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/files/common-licenses/MirOS -------------------------------------------------------------------------------- /meta/files/common-licenses/NCSA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/files/common-licenses/NCSA -------------------------------------------------------------------------------- /meta/files/common-licenses/NGPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/files/common-licenses/NGPL -------------------------------------------------------------------------------- /meta/files/common-licenses/NTP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/files/common-licenses/NTP -------------------------------------------------------------------------------- /meta/files/common-licenses/Nauman: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/files/common-licenses/Nauman -------------------------------------------------------------------------------- /meta/files/common-licenses/Nokia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/files/common-licenses/Nokia -------------------------------------------------------------------------------- /meta/files/common-licenses/OASIS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/files/common-licenses/OASIS -------------------------------------------------------------------------------- /meta/files/common-licenses/OGTSL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/files/common-licenses/OGTSL -------------------------------------------------------------------------------- /meta/files/common-licenses/PD: -------------------------------------------------------------------------------- 1 | This is a placeholder for the Public Domain License 2 | -------------------------------------------------------------------------------- /meta/files/common-licenses/Proprietary: -------------------------------------------------------------------------------- 1 | Proprietary license. 2 | -------------------------------------------------------------------------------- /meta/files/common-licenses/RSCPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/files/common-licenses/RSCPL -------------------------------------------------------------------------------- /meta/files/common-licenses/Ruby: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/files/common-licenses/Ruby -------------------------------------------------------------------------------- /meta/files/common-licenses/SAX-PD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/files/common-licenses/SAX-PD -------------------------------------------------------------------------------- /meta/files/common-licenses/SGI-1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/files/common-licenses/SGI-1 -------------------------------------------------------------------------------- /meta/files/common-licenses/UCB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/files/common-licenses/UCB -------------------------------------------------------------------------------- /meta/files/common-licenses/W3C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/files/common-licenses/W3C -------------------------------------------------------------------------------- /meta/files/common-licenses/XSL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/files/common-licenses/XSL -------------------------------------------------------------------------------- /meta/files/common-licenses/Xnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/files/common-licenses/Xnet -------------------------------------------------------------------------------- /meta/files/common-licenses/Zlib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/files/common-licenses/Zlib -------------------------------------------------------------------------------- /meta/files/common-licenses/bzip2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/files/common-licenses/bzip2 -------------------------------------------------------------------------------- /meta/files/common-licenses/tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/files/common-licenses/tcl -------------------------------------------------------------------------------- /meta/files/common-licenses/unfs3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/files/common-licenses/unfs3 -------------------------------------------------------------------------------- /meta/files/deploydir_readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/files/deploydir_readme.txt -------------------------------------------------------------------------------- /meta/files/ext-sdk-prepare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/files/ext-sdk-prepare.py -------------------------------------------------------------------------------- /meta/files/fs-perms.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/files/fs-perms.txt -------------------------------------------------------------------------------- /meta/lib/buildstats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/lib/buildstats.py -------------------------------------------------------------------------------- /meta/lib/oe/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/lib/oe/__init__.py -------------------------------------------------------------------------------- /meta/lib/oe/cachedpath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/lib/oe/cachedpath.py -------------------------------------------------------------------------------- /meta/lib/oe/classextend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/lib/oe/classextend.py -------------------------------------------------------------------------------- /meta/lib/oe/classutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/lib/oe/classutils.py -------------------------------------------------------------------------------- /meta/lib/oe/copy_buildsystem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/lib/oe/copy_buildsystem.py -------------------------------------------------------------------------------- /meta/lib/oe/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/lib/oe/data.py -------------------------------------------------------------------------------- /meta/lib/oe/distro_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/lib/oe/distro_check.py -------------------------------------------------------------------------------- /meta/lib/oe/gpg_sign.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/lib/oe/gpg_sign.py -------------------------------------------------------------------------------- /meta/lib/oe/license.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/lib/oe/license.py -------------------------------------------------------------------------------- /meta/lib/oe/lsb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/lib/oe/lsb.py -------------------------------------------------------------------------------- /meta/lib/oe/maketype.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/lib/oe/maketype.py -------------------------------------------------------------------------------- /meta/lib/oe/manifest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/lib/oe/manifest.py -------------------------------------------------------------------------------- /meta/lib/oe/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/lib/oe/package.py -------------------------------------------------------------------------------- /meta/lib/oe/package_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/lib/oe/package_manager.py -------------------------------------------------------------------------------- /meta/lib/oe/packagedata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/lib/oe/packagedata.py -------------------------------------------------------------------------------- /meta/lib/oe/packagegroup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/lib/oe/packagegroup.py -------------------------------------------------------------------------------- /meta/lib/oe/patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/lib/oe/patch.py -------------------------------------------------------------------------------- /meta/lib/oe/path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/lib/oe/path.py -------------------------------------------------------------------------------- /meta/lib/oe/prservice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/lib/oe/prservice.py -------------------------------------------------------------------------------- /meta/lib/oe/qa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/lib/oe/qa.py -------------------------------------------------------------------------------- /meta/lib/oe/recipeutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/lib/oe/recipeutils.py -------------------------------------------------------------------------------- /meta/lib/oe/rootfs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/lib/oe/rootfs.py -------------------------------------------------------------------------------- /meta/lib/oe/sdk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/lib/oe/sdk.py -------------------------------------------------------------------------------- /meta/lib/oe/sstatesig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/lib/oe/sstatesig.py -------------------------------------------------------------------------------- /meta/lib/oe/terminal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/lib/oe/terminal.py -------------------------------------------------------------------------------- /meta/lib/oe/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /meta/lib/oe/tests/test_elf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/lib/oe/tests/test_elf.py -------------------------------------------------------------------------------- /meta/lib/oe/tests/test_license.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/lib/oe/tests/test_license.py -------------------------------------------------------------------------------- /meta/lib/oe/tests/test_path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/lib/oe/tests/test_path.py -------------------------------------------------------------------------------- /meta/lib/oe/tests/test_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/lib/oe/tests/test_types.py -------------------------------------------------------------------------------- /meta/lib/oe/tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/lib/oe/tests/test_utils.py -------------------------------------------------------------------------------- /meta/lib/oe/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/lib/oe/types.py -------------------------------------------------------------------------------- /meta/lib/oe/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/lib/oe/utils.py -------------------------------------------------------------------------------- /meta/lib/oeqa/buildperf/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/lib/oeqa/buildperf/base.py -------------------------------------------------------------------------------- /meta/lib/oeqa/oetest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/lib/oeqa/oetest.py -------------------------------------------------------------------------------- /meta/lib/oeqa/runexported.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/lib/oeqa/runexported.py -------------------------------------------------------------------------------- /meta/lib/oeqa/runtime/_ptest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/lib/oeqa/runtime/_ptest.py -------------------------------------------------------------------------------- /meta/lib/oeqa/runtime/buildcvs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/lib/oeqa/runtime/buildcvs.py -------------------------------------------------------------------------------- /meta/lib/oeqa/runtime/connman.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/lib/oeqa/runtime/connman.py -------------------------------------------------------------------------------- /meta/lib/oeqa/runtime/date.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/lib/oeqa/runtime/date.py -------------------------------------------------------------------------------- /meta/lib/oeqa/runtime/df.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/lib/oeqa/runtime/df.py -------------------------------------------------------------------------------- /meta/lib/oeqa/runtime/files/test.cpp: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | int main() {} -------------------------------------------------------------------------------- /meta/lib/oeqa/runtime/gcc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/lib/oeqa/runtime/gcc.py -------------------------------------------------------------------------------- /meta/lib/oeqa/runtime/ldd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/lib/oeqa/runtime/ldd.py -------------------------------------------------------------------------------- /meta/lib/oeqa/runtime/multilib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/lib/oeqa/runtime/multilib.py -------------------------------------------------------------------------------- /meta/lib/oeqa/runtime/pam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/lib/oeqa/runtime/pam.py -------------------------------------------------------------------------------- /meta/lib/oeqa/runtime/perl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/lib/oeqa/runtime/perl.py -------------------------------------------------------------------------------- /meta/lib/oeqa/runtime/ping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/lib/oeqa/runtime/ping.py -------------------------------------------------------------------------------- /meta/lib/oeqa/runtime/python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/lib/oeqa/runtime/python.py -------------------------------------------------------------------------------- /meta/lib/oeqa/runtime/rpm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/lib/oeqa/runtime/rpm.py -------------------------------------------------------------------------------- /meta/lib/oeqa/runtime/scanelf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/lib/oeqa/runtime/scanelf.py -------------------------------------------------------------------------------- /meta/lib/oeqa/runtime/scp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/lib/oeqa/runtime/scp.py -------------------------------------------------------------------------------- /meta/lib/oeqa/runtime/smart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/lib/oeqa/runtime/smart.py -------------------------------------------------------------------------------- /meta/lib/oeqa/runtime/ssh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/lib/oeqa/runtime/ssh.py -------------------------------------------------------------------------------- /meta/lib/oeqa/runtime/syslog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/lib/oeqa/runtime/syslog.py -------------------------------------------------------------------------------- /meta/lib/oeqa/runtime/systemd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/lib/oeqa/runtime/systemd.py -------------------------------------------------------------------------------- /meta/lib/oeqa/runtime/x32lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/lib/oeqa/runtime/x32lib.py -------------------------------------------------------------------------------- /meta/lib/oeqa/runtime/xorg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/lib/oeqa/runtime/xorg.py -------------------------------------------------------------------------------- /meta/lib/oeqa/sdk/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/lib/oeqa/sdk/__init__.py -------------------------------------------------------------------------------- /meta/lib/oeqa/sdk/buildcvs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/lib/oeqa/sdk/buildcvs.py -------------------------------------------------------------------------------- /meta/lib/oeqa/sdk/gcc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/lib/oeqa/sdk/gcc.py -------------------------------------------------------------------------------- /meta/lib/oeqa/sdk/perl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/lib/oeqa/sdk/perl.py -------------------------------------------------------------------------------- /meta/lib/oeqa/sdk/python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/lib/oeqa/sdk/python.py -------------------------------------------------------------------------------- /meta/lib/oeqa/sdkext/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/lib/oeqa/sdkext/__init__.py -------------------------------------------------------------------------------- /meta/lib/oeqa/sdkext/devtool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/lib/oeqa/sdkext/devtool.py -------------------------------------------------------------------------------- /meta/lib/oeqa/selftest/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/lib/oeqa/selftest/base.py -------------------------------------------------------------------------------- /meta/lib/oeqa/selftest/bbtests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/lib/oeqa/selftest/bbtests.py -------------------------------------------------------------------------------- /meta/lib/oeqa/selftest/devtool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/lib/oeqa/selftest/devtool.py -------------------------------------------------------------------------------- /meta/lib/oeqa/selftest/eSDK.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/lib/oeqa/selftest/eSDK.py -------------------------------------------------------------------------------- /meta/lib/oeqa/selftest/liboe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/lib/oeqa/selftest/liboe.py -------------------------------------------------------------------------------- /meta/lib/oeqa/selftest/pkgdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/lib/oeqa/selftest/pkgdata.py -------------------------------------------------------------------------------- /meta/lib/oeqa/selftest/signing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/lib/oeqa/selftest/signing.py -------------------------------------------------------------------------------- /meta/lib/oeqa/selftest/sstate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/lib/oeqa/selftest/sstate.py -------------------------------------------------------------------------------- /meta/lib/oeqa/selftest/wic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/lib/oeqa/selftest/wic.py -------------------------------------------------------------------------------- /meta/lib/oeqa/targetcontrol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/lib/oeqa/targetcontrol.py -------------------------------------------------------------------------------- /meta/lib/oeqa/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/lib/oeqa/utils/__init__.py -------------------------------------------------------------------------------- /meta/lib/oeqa/utils/commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/lib/oeqa/utils/commands.py -------------------------------------------------------------------------------- /meta/lib/oeqa/utils/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/lib/oeqa/utils/decorators.py -------------------------------------------------------------------------------- /meta/lib/oeqa/utils/dump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/lib/oeqa/utils/dump.py -------------------------------------------------------------------------------- /meta/lib/oeqa/utils/ftools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/lib/oeqa/utils/ftools.py -------------------------------------------------------------------------------- /meta/lib/oeqa/utils/git.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/lib/oeqa/utils/git.py -------------------------------------------------------------------------------- /meta/lib/oeqa/utils/httpserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/lib/oeqa/utils/httpserver.py -------------------------------------------------------------------------------- /meta/lib/oeqa/utils/logparser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/lib/oeqa/utils/logparser.py -------------------------------------------------------------------------------- /meta/lib/oeqa/utils/network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/lib/oeqa/utils/network.py -------------------------------------------------------------------------------- /meta/lib/oeqa/utils/qemurunner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/lib/oeqa/utils/qemurunner.py -------------------------------------------------------------------------------- /meta/lib/oeqa/utils/sshcontrol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/lib/oeqa/utils/sshcontrol.py -------------------------------------------------------------------------------- /meta/lib/oeqa/utils/testexport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/lib/oeqa/utils/testexport.py -------------------------------------------------------------------------------- /meta/recipes-bsp/acpid/acpid.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/recipes-bsp/acpid/acpid.inc -------------------------------------------------------------------------------- /meta/recipes-bsp/acpid/acpid/init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/recipes-bsp/acpid/acpid/init -------------------------------------------------------------------------------- /meta/recipes-bsp/alsa-state/alsa-state/asound.conf: -------------------------------------------------------------------------------- 1 | # Global alsa-lib configuration 2 | -------------------------------------------------------------------------------- /meta/recipes-bsp/alsa-state/alsa-state/asound.state: -------------------------------------------------------------------------------- 1 | # Dummy file, do not delete 2 | -------------------------------------------------------------------------------- /meta/recipes-bsp/apmd/apmd/init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/recipes-bsp/apmd/apmd/init -------------------------------------------------------------------------------- /meta/recipes-bsp/formfactor/files/machconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /meta/recipes-bsp/grub/files/cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/recipes-bsp/grub/files/cfg -------------------------------------------------------------------------------- /meta/recipes-bsp/grub/grub2.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/recipes-bsp/grub/grub2.inc -------------------------------------------------------------------------------- /meta/recipes-bsp/grub/grub_git.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/recipes-bsp/grub/grub_git.bb -------------------------------------------------------------------------------- /meta/recipes-connectivity/bind/bind/bind9: -------------------------------------------------------------------------------- 1 | # startup options for the server 2 | OPTIONS="-u bind" 3 | -------------------------------------------------------------------------------- /meta/recipes-connectivity/openssl/openssl/run-ptest: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | make -k runtest 3 | -------------------------------------------------------------------------------- /meta/recipes-core/base-files/base-files/host.conf: -------------------------------------------------------------------------------- 1 | order hosts,bind 2 | multi on 3 | -------------------------------------------------------------------------------- /meta/recipes-core/base-files/base-files/issue: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /meta/recipes-core/base-files/base-files/issue.net: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /meta/recipes-core/base-files/base-files/motd: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /meta/recipes-core/base-files/base-files/rotation: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /meta/recipes-core/base-files/base-files/usbd: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /meta/recipes-core/busybox/busybox/sha1sum.cfg: -------------------------------------------------------------------------------- 1 | CONFIG_SHA1SUM=y 2 | -------------------------------------------------------------------------------- /meta/recipes-core/busybox/busybox/sha256sum.cfg: -------------------------------------------------------------------------------- 1 | CONFIG_SHA256SUM=y 2 | -------------------------------------------------------------------------------- /meta/recipes-core/busybox/files/default.script: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | exec run-parts -a "$1" /etc/udhcpc.d 4 | 5 | -------------------------------------------------------------------------------- /meta/recipes-core/expat/expat.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/recipes-core/expat/expat.inc -------------------------------------------------------------------------------- /meta/recipes-core/fts/fts.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/recipes-core/fts/fts.bb -------------------------------------------------------------------------------- /meta/recipes-core/glibc/glibc-locale_2.24.bb: -------------------------------------------------------------------------------- 1 | require glibc-locale.inc 2 | -------------------------------------------------------------------------------- /meta/recipes-core/glibc/glibc-mtrace_2.24.bb: -------------------------------------------------------------------------------- 1 | require glibc-mtrace.inc 2 | -------------------------------------------------------------------------------- /meta/recipes-core/glibc/glibc-scripts_2.24.bb: -------------------------------------------------------------------------------- 1 | require glibc-scripts.inc 2 | -------------------------------------------------------------------------------- /meta/recipes-core/glibc/glibc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/recipes-core/glibc/glibc.inc -------------------------------------------------------------------------------- /meta/recipes-core/glibc/glibc/etc/ld.so.conf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /meta/recipes-core/libxml/libxml2/run-ptest: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | make -k runtests 4 | -------------------------------------------------------------------------------- /meta/recipes-core/musl/musl.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/recipes-core/musl/musl.inc -------------------------------------------------------------------------------- /meta/recipes-core/udev/eudev/init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/recipes-core/udev/eudev/init -------------------------------------------------------------------------------- /meta/recipes-core/zlib/site_config/headers: -------------------------------------------------------------------------------- 1 | zlib.h 2 | -------------------------------------------------------------------------------- /meta/recipes-devtools/apt/apt.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/recipes-devtools/apt/apt.inc -------------------------------------------------------------------------------- /meta/recipes-devtools/devel-config/nfs-export-root/exports: -------------------------------------------------------------------------------- 1 | / *(rw,no_root_squash,async,no_subtree_check) 2 | -------------------------------------------------------------------------------- /meta/recipes-devtools/gdb/gdb.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/recipes-devtools/gdb/gdb.inc -------------------------------------------------------------------------------- /meta/recipes-devtools/git/git.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/recipes-devtools/git/git.inc -------------------------------------------------------------------------------- /meta/recipes-devtools/m4/m4.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/recipes-devtools/m4/m4.inc -------------------------------------------------------------------------------- /meta/recipes-devtools/m4/m4_1.4.17.bb: -------------------------------------------------------------------------------- 1 | require m4-${PV}.inc 2 | 3 | BBCLASSEXTEND = "nativesdk" 4 | -------------------------------------------------------------------------------- /meta/recipes-devtools/m4/m4_1.4.9.bb: -------------------------------------------------------------------------------- 1 | require m4-${PV}.inc 2 | 3 | BBCLASSEXTEND = "nativesdk" 4 | -------------------------------------------------------------------------------- /meta/recipes-devtools/perl/perl/config.sh-32-be: -------------------------------------------------------------------------------- 1 | byteorder='4321' 2 | -------------------------------------------------------------------------------- /meta/recipes-devtools/perl/perl/config.sh-32-le: -------------------------------------------------------------------------------- 1 | byteorder='1234' 2 | -------------------------------------------------------------------------------- /meta/recipes-devtools/perl/perl/config.sh-64-be: -------------------------------------------------------------------------------- 1 | byteorder='87654321' 2 | -------------------------------------------------------------------------------- /meta/recipes-devtools/perl/perl/config.sh-64-le: -------------------------------------------------------------------------------- 1 | byteorder='12345678' 2 | -------------------------------------------------------------------------------- /meta/recipes-devtools/run-postinsts/run-postinsts/run-postinsts.init: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | run-postinsts 4 | -------------------------------------------------------------------------------- /meta/recipes-extended/bzip2/bzip2-1.0.6/run-ptest: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | make -k runtest 3 | -------------------------------------------------------------------------------- /meta/recipes-extended/diffutils/diffutils-3.5/run-ptest: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | make -C tests check-TESTS 4 | -------------------------------------------------------------------------------- /meta/recipes-extended/ethtool/ethtool/run-ptest: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | make -k runtest-TESTS 3 | -------------------------------------------------------------------------------- /meta/recipes-extended/ghostscript/ghostscript/i686: -------------------------------------------------------------------------------- 1 | i586 -------------------------------------------------------------------------------- /meta/recipes-extended/parted/files/run-ptest: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | make -C tests check-TESTS 4 | -------------------------------------------------------------------------------- /meta/recipes-extended/rpcbind/rpcbind/rpcbind.conf: -------------------------------------------------------------------------------- 1 | # Optional arguments passed to rpcbind. 2 | # 3 | RPCBIND_OPTS="" 4 | -------------------------------------------------------------------------------- /meta/recipes-extended/tar/tar.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/recipes-extended/tar/tar.inc -------------------------------------------------------------------------------- /meta/recipes-gnome/gdk-pixbuf/gdk-pixbuf/run-ptest: -------------------------------------------------------------------------------- 1 | #! /bin/sh 2 | 3 | gnome-desktop-testing-runner gdk-pixbuf 4 | -------------------------------------------------------------------------------- /meta/recipes-gnome/gtk+/gtk+.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/recipes-gnome/gtk+/gtk+.inc -------------------------------------------------------------------------------- /meta/recipes-gnome/gtk+/gtk+3.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/recipes-gnome/gtk+/gtk+3.inc -------------------------------------------------------------------------------- /meta/recipes-graphics/clutter/clutter-1.0/run-ptest: -------------------------------------------------------------------------------- 1 | #! /bin/sh 2 | 3 | gnome-desktop-testing-runner clutter 4 | -------------------------------------------------------------------------------- /meta/recipes-graphics/mx/mx.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/recipes-graphics/mx/mx.inc -------------------------------------------------------------------------------- /meta/recipes-graphics/pango/pango/run-ptest: -------------------------------------------------------------------------------- 1 | #! /bin/sh 2 | 3 | gnome-desktop-testing-runner pango 4 | -------------------------------------------------------------------------------- /meta/recipes-graphics/xorg-xserver/xserver-xf86-config/xorg.conf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /meta/recipes-kernel/dtc/dtc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/recipes-kernel/dtc/dtc.inc -------------------------------------------------------------------------------- /meta/recipes-kernel/kmod/kmod.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/recipes-kernel/kmod/kmod.inc -------------------------------------------------------------------------------- /meta/recipes-kernel/perf/perf.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/recipes-kernel/perf/perf.bb -------------------------------------------------------------------------------- /meta/recipes-rt/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/recipes-rt/README -------------------------------------------------------------------------------- /meta/recipes-rt/rt-tests/files/run-ptest: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | python3 ./rt_bmark.py 4 | -------------------------------------------------------------------------------- /meta/recipes-sato/matchbox-desktop/files/vfolders/Root.order: -------------------------------------------------------------------------------- 1 | Applications 2 | Games 3 | Settings 4 | All 5 | -------------------------------------------------------------------------------- /meta/recipes-sato/settings-daemon/files/70settings-daemon.sh: -------------------------------------------------------------------------------- 1 | /usr/bin/settings-daemon & 2 | -------------------------------------------------------------------------------- /meta/recipes-support/attr/acl.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/recipes-support/attr/acl.inc -------------------------------------------------------------------------------- /meta/recipes-support/gmp/gmp.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/recipes-support/gmp/gmp.inc -------------------------------------------------------------------------------- /meta/recipes-support/icu/icu.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/recipes-support/icu/icu.inc -------------------------------------------------------------------------------- /meta/recipes-support/libpcre/libpcre/run-ptest: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | make check-TESTS 4 | -------------------------------------------------------------------------------- /meta/recipes-support/lz4/lz4.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/recipes-support/lz4/lz4.bb -------------------------------------------------------------------------------- /meta/recipes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/recipes.txt -------------------------------------------------------------------------------- /meta/site/arm-32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/site/arm-32 -------------------------------------------------------------------------------- /meta/site/arm-64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/site/arm-64 -------------------------------------------------------------------------------- /meta/site/arm-common: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/site/arm-common -------------------------------------------------------------------------------- /meta/site/arm-darwin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/site/arm-darwin -------------------------------------------------------------------------------- /meta/site/arm-darwin8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/site/arm-darwin8 -------------------------------------------------------------------------------- /meta/site/arm-linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/site/arm-linux -------------------------------------------------------------------------------- /meta/site/arm-linux-uclibc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/site/arm-linux-uclibc -------------------------------------------------------------------------------- /meta/site/armeb-linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/site/armeb-linux -------------------------------------------------------------------------------- /meta/site/armeb-linux-uclibc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/site/armeb-linux-uclibc -------------------------------------------------------------------------------- /meta/site/common: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/site/common -------------------------------------------------------------------------------- /meta/site/common-darwin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/site/common-darwin -------------------------------------------------------------------------------- /meta/site/common-glibc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/site/common-glibc -------------------------------------------------------------------------------- /meta/site/common-linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/site/common-linux -------------------------------------------------------------------------------- /meta/site/common-mingw: -------------------------------------------------------------------------------- 1 | # expat 2 | ac_cv_func_mmap_fixed_mapped=no 3 | -------------------------------------------------------------------------------- /meta/site/common-musl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/site/common-musl -------------------------------------------------------------------------------- /meta/site/common-uclibc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/site/common-uclibc -------------------------------------------------------------------------------- /meta/site/endian-big: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/site/endian-big -------------------------------------------------------------------------------- /meta/site/endian-little: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/site/endian-little -------------------------------------------------------------------------------- /meta/site/ix86-common: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/site/ix86-common -------------------------------------------------------------------------------- /meta/site/mips-common: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/site/mips-common -------------------------------------------------------------------------------- /meta/site/mips-linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/site/mips-linux -------------------------------------------------------------------------------- /meta/site/mips-linux-uclibc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/site/mips-linux-uclibc -------------------------------------------------------------------------------- /meta/site/mips64-linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/site/mips64-linux -------------------------------------------------------------------------------- /meta/site/mips64-linux-uclibc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/site/mips64-linux-uclibc -------------------------------------------------------------------------------- /meta/site/mips64el-linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/site/mips64el-linux -------------------------------------------------------------------------------- /meta/site/mips64el-linux-uclibc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/site/mips64el-linux-uclibc -------------------------------------------------------------------------------- /meta/site/mipsel-linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/site/mipsel-linux -------------------------------------------------------------------------------- /meta/site/mipsel-linux-uclibc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/site/mipsel-linux-uclibc -------------------------------------------------------------------------------- /meta/site/mipsisa32r6-linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/site/mipsisa32r6-linux -------------------------------------------------------------------------------- /meta/site/mipsisa32r6el-linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/site/mipsisa32r6el-linux -------------------------------------------------------------------------------- /meta/site/mipsisa64r6-linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/site/mipsisa64r6-linux -------------------------------------------------------------------------------- /meta/site/mipsisa64r6el-linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/site/mipsisa64r6el-linux -------------------------------------------------------------------------------- /meta/site/native: -------------------------------------------------------------------------------- 1 | ac_cv_path_SED=sed 2 | -------------------------------------------------------------------------------- /meta/site/nios2-linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/site/nios2-linux -------------------------------------------------------------------------------- /meta/site/powerpc-common: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/site/powerpc-common -------------------------------------------------------------------------------- /meta/site/powerpc-darwin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/site/powerpc-darwin -------------------------------------------------------------------------------- /meta/site/powerpc-linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/site/powerpc-linux -------------------------------------------------------------------------------- /meta/site/powerpc32-linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/site/powerpc32-linux -------------------------------------------------------------------------------- /meta/site/powerpc64-linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/site/powerpc64-linux -------------------------------------------------------------------------------- /meta/site/sh-common: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/site/sh-common -------------------------------------------------------------------------------- /meta/site/sparc-linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/site/sparc-linux -------------------------------------------------------------------------------- /meta/site/x32-linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/site/x32-linux -------------------------------------------------------------------------------- /meta/site/x86_64-linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/site/x86_64-linux -------------------------------------------------------------------------------- /meta/site/x86_64-linux-uclibc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/meta/site/x86_64-linux-uclibc -------------------------------------------------------------------------------- /oe-init-build-env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/oe-init-build-env -------------------------------------------------------------------------------- /oe-init-build-env-memres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/oe-init-build-env-memres -------------------------------------------------------------------------------- /scripts/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/scripts/README -------------------------------------------------------------------------------- /scripts/bitbake-prserv-tool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/scripts/bitbake-prserv-tool -------------------------------------------------------------------------------- /scripts/bitbake-whatchanged: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/scripts/bitbake-whatchanged -------------------------------------------------------------------------------- /scripts/buildhistory-diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/scripts/buildhistory-diff -------------------------------------------------------------------------------- /scripts/buildstats-diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/scripts/buildstats-diff -------------------------------------------------------------------------------- /scripts/cleanup-workdir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/scripts/cleanup-workdir -------------------------------------------------------------------------------- /scripts/combo-layer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/scripts/combo-layer -------------------------------------------------------------------------------- /scripts/combo-layer.conf.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/scripts/combo-layer.conf.example -------------------------------------------------------------------------------- /scripts/contrib/bbvars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/scripts/contrib/bbvars.py -------------------------------------------------------------------------------- /scripts/contrib/ddimage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/scripts/contrib/ddimage -------------------------------------------------------------------------------- /scripts/contrib/devtool-stress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/scripts/contrib/devtool-stress.py -------------------------------------------------------------------------------- /scripts/contrib/graph-tool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/scripts/contrib/graph-tool -------------------------------------------------------------------------------- /scripts/contrib/mkefidisk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/scripts/contrib/mkefidisk.sh -------------------------------------------------------------------------------- /scripts/contrib/serdevtry: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/scripts/contrib/serdevtry -------------------------------------------------------------------------------- /scripts/contrib/uncovered: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/scripts/contrib/uncovered -------------------------------------------------------------------------------- /scripts/cp-noerror: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/scripts/cp-noerror -------------------------------------------------------------------------------- /scripts/create-pull-request: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/scripts/create-pull-request -------------------------------------------------------------------------------- /scripts/crosstap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/scripts/crosstap -------------------------------------------------------------------------------- /scripts/devtool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/scripts/devtool -------------------------------------------------------------------------------- /scripts/gen-lockedsig-cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/scripts/gen-lockedsig-cache -------------------------------------------------------------------------------- /scripts/gen-site-config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/scripts/gen-site-config -------------------------------------------------------------------------------- /scripts/lib/argparse_oe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/scripts/lib/argparse_oe.py -------------------------------------------------------------------------------- /scripts/lib/devtool/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/scripts/lib/devtool/__init__.py -------------------------------------------------------------------------------- /scripts/lib/devtool/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/scripts/lib/devtool/build.py -------------------------------------------------------------------------------- /scripts/lib/devtool/build_sdk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/scripts/lib/devtool/build_sdk.py -------------------------------------------------------------------------------- /scripts/lib/devtool/deploy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/scripts/lib/devtool/deploy.py -------------------------------------------------------------------------------- /scripts/lib/devtool/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/scripts/lib/devtool/package.py -------------------------------------------------------------------------------- /scripts/lib/devtool/runqemu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/scripts/lib/devtool/runqemu.py -------------------------------------------------------------------------------- /scripts/lib/devtool/sdk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/scripts/lib/devtool/sdk.py -------------------------------------------------------------------------------- /scripts/lib/devtool/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/scripts/lib/devtool/search.py -------------------------------------------------------------------------------- /scripts/lib/devtool/upgrade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/scripts/lib/devtool/upgrade.py -------------------------------------------------------------------------------- /scripts/lib/recipetool/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/lib/scriptpath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/scripts/lib/scriptpath.py -------------------------------------------------------------------------------- /scripts/lib/scriptutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/scripts/lib/scriptutils.py -------------------------------------------------------------------------------- /scripts/lib/wic/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/scripts/lib/wic/__init__.py -------------------------------------------------------------------------------- /scripts/lib/wic/__version__.py: -------------------------------------------------------------------------------- 1 | VERSION = "2.00" 2 | -------------------------------------------------------------------------------- /scripts/lib/wic/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/scripts/lib/wic/conf.py -------------------------------------------------------------------------------- /scripts/lib/wic/creator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/scripts/lib/wic/creator.py -------------------------------------------------------------------------------- /scripts/lib/wic/engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/scripts/lib/wic/engine.py -------------------------------------------------------------------------------- /scripts/lib/wic/filemap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/scripts/lib/wic/filemap.py -------------------------------------------------------------------------------- /scripts/lib/wic/help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/scripts/lib/wic/help.py -------------------------------------------------------------------------------- /scripts/lib/wic/imager/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/lib/wic/ksparser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/scripts/lib/wic/ksparser.py -------------------------------------------------------------------------------- /scripts/lib/wic/msger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/scripts/lib/wic/msger.py -------------------------------------------------------------------------------- /scripts/lib/wic/partition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/scripts/lib/wic/partition.py -------------------------------------------------------------------------------- /scripts/lib/wic/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/scripts/lib/wic/plugin.py -------------------------------------------------------------------------------- /scripts/lib/wic/pluginbase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/scripts/lib/wic/pluginbase.py -------------------------------------------------------------------------------- /scripts/lib/wic/test: -------------------------------------------------------------------------------- 1 | test 2 | -------------------------------------------------------------------------------- /scripts/lib/wic/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/lib/wic/utils/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/scripts/lib/wic/utils/misc.py -------------------------------------------------------------------------------- /scripts/lnr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/scripts/lnr -------------------------------------------------------------------------------- /scripts/native-intercept/chown: -------------------------------------------------------------------------------- 1 | #! /bin/sh 2 | echo "Intercept $0: $@ -- do nothing" 3 | -------------------------------------------------------------------------------- /scripts/oe-build-perf-test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/scripts/oe-build-perf-test -------------------------------------------------------------------------------- /scripts/oe-buildenv-internal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/scripts/oe-buildenv-internal -------------------------------------------------------------------------------- /scripts/oe-check-sstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/scripts/oe-check-sstate -------------------------------------------------------------------------------- /scripts/oe-find-native-sysroot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/scripts/oe-find-native-sysroot -------------------------------------------------------------------------------- /scripts/oe-git-proxy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/scripts/oe-git-proxy -------------------------------------------------------------------------------- /scripts/oe-pkgdata-util: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/scripts/oe-pkgdata-util -------------------------------------------------------------------------------- /scripts/oe-publish-sdk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/scripts/oe-publish-sdk -------------------------------------------------------------------------------- /scripts/oe-run-native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/scripts/oe-run-native -------------------------------------------------------------------------------- /scripts/oe-selftest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/scripts/oe-selftest -------------------------------------------------------------------------------- /scripts/oe-setup-builddir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/scripts/oe-setup-builddir -------------------------------------------------------------------------------- /scripts/oe-setup-rpmrepo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/scripts/oe-setup-rpmrepo -------------------------------------------------------------------------------- /scripts/oe-trim-schemas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/scripts/oe-trim-schemas -------------------------------------------------------------------------------- /scripts/opkg-query-helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/scripts/opkg-query-helper.py -------------------------------------------------------------------------------- /scripts/pybootchartgui/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/scripts/pybootchartgui/AUTHORS -------------------------------------------------------------------------------- /scripts/pybootchartgui/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/scripts/pybootchartgui/COPYING -------------------------------------------------------------------------------- /scripts/pybootchartgui/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/scripts/pybootchartgui/NEWS -------------------------------------------------------------------------------- /scripts/pybootchartgui/pybootchartgui/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/pybootchartgui/pybootchartgui/main.py: -------------------------------------------------------------------------------- 1 | main.py.in -------------------------------------------------------------------------------- /scripts/pythondeps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/scripts/pythondeps -------------------------------------------------------------------------------- /scripts/recipetool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/scripts/recipetool -------------------------------------------------------------------------------- /scripts/relocate_sdk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/scripts/relocate_sdk.py -------------------------------------------------------------------------------- /scripts/rpm2cpio.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/scripts/rpm2cpio.sh -------------------------------------------------------------------------------- /scripts/runqemu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/scripts/runqemu -------------------------------------------------------------------------------- /scripts/runqemu-export-rootfs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/scripts/runqemu-export-rootfs -------------------------------------------------------------------------------- /scripts/runqemu-extract-sdk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/scripts/runqemu-extract-sdk -------------------------------------------------------------------------------- /scripts/runqemu-gen-tapdevs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/scripts/runqemu-gen-tapdevs -------------------------------------------------------------------------------- /scripts/runqemu-ifdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/scripts/runqemu-ifdown -------------------------------------------------------------------------------- /scripts/runqemu-ifup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/scripts/runqemu-ifup -------------------------------------------------------------------------------- /scripts/runqemu.README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/scripts/runqemu.README -------------------------------------------------------------------------------- /scripts/send-error-report: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/scripts/send-error-report -------------------------------------------------------------------------------- /scripts/send-pull-request: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/scripts/send-pull-request -------------------------------------------------------------------------------- /scripts/swupd-http-server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/scripts/swupd-http-server -------------------------------------------------------------------------------- /scripts/task-time: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/scripts/task-time -------------------------------------------------------------------------------- /scripts/test-dependencies.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/scripts/test-dependencies.sh -------------------------------------------------------------------------------- /scripts/test-reexec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/scripts/test-reexec -------------------------------------------------------------------------------- /scripts/test-remote-image: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/scripts/test-remote-image -------------------------------------------------------------------------------- /scripts/tiny/dirsize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/scripts/tiny/dirsize.py -------------------------------------------------------------------------------- /scripts/tiny/ksize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/scripts/tiny/ksize.py -------------------------------------------------------------------------------- /scripts/verify-bashisms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/scripts/verify-bashisms -------------------------------------------------------------------------------- /scripts/wic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/scripts/wic -------------------------------------------------------------------------------- /scripts/wipe-sysroot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ostroproject/ostro-os/HEAD/scripts/wipe-sysroot --------------------------------------------------------------------------------