├── .gitignore ├── COPYING ├── README ├── release-notes ├── Makefile ├── README ├── make.bat └── source │ ├── .fsl-community-bsp-supported-bootloaders-descr.inc.swp │ ├── Acknowledgement.rst │ ├── _static │ └── release-notes.css │ ├── _templates │ └── layout.html │ ├── ack-sourcers.inc │ ├── barebox-mainline.inc │ ├── bootloader-default.inc │ ├── bsp-scope.rst │ ├── closed_bugs.inc │ ├── conf.py │ ├── distros.inc │ ├── fsl-community-bsp-supported-bootloaders-descr.inc │ ├── fsl-community-bsp-supported-kernels.inc │ ├── fslxcmt.inc │ ├── images.inc │ ├── index.rst │ ├── introduction.rst │ ├── known-issues.rst │ ├── linux-default.inc │ ├── machine-list.inc │ ├── machines-with-maintainers.inc │ ├── machines-without-maintainers.inc │ ├── open_bugs.inc │ ├── packagegroups.inc │ ├── soc-pkg-optimization.inc │ ├── soc-pkg.inc │ ├── soc-tree.diag │ ├── source-code.rst │ ├── test-results.rst │ ├── upstream1.diag │ ├── userspace-pkg.inc │ └── variables.inc ├── scripts ├── bitbake-metadata2doc.py ├── bitbake-metadata2doc.sh ├── blockdiag.preample ├── doc_utils.py ├── extract-bitbake-metadata.py ├── format_machine_list.py ├── generate-bugs-table.py ├── output-machine-list └── test-sheet-parser.py └── user-guide ├── Makefile ├── make.bat └── source ├── _static └── .gitkeep ├── conf.py ├── devtasks.rst ├── distro-list.inc ├── distros.rst ├── folders.rst ├── image-list.inc ├── images.rst ├── index.rst ├── machines.rst ├── metadata.rst ├── nsteps.rst └── weston.rst /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | *.pyc 3 | build/ 4 | scripts/doc-data.pckl 5 | -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freescale/Documentation/HEAD/COPYING -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freescale/Documentation/HEAD/README -------------------------------------------------------------------------------- /release-notes/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freescale/Documentation/HEAD/release-notes/Makefile -------------------------------------------------------------------------------- /release-notes/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freescale/Documentation/HEAD/release-notes/README -------------------------------------------------------------------------------- /release-notes/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freescale/Documentation/HEAD/release-notes/make.bat -------------------------------------------------------------------------------- /release-notes/source/.fsl-community-bsp-supported-bootloaders-descr.inc.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freescale/Documentation/HEAD/release-notes/source/.fsl-community-bsp-supported-bootloaders-descr.inc.swp -------------------------------------------------------------------------------- /release-notes/source/Acknowledgement.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freescale/Documentation/HEAD/release-notes/source/Acknowledgement.rst -------------------------------------------------------------------------------- /release-notes/source/_static/release-notes.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freescale/Documentation/HEAD/release-notes/source/_static/release-notes.css -------------------------------------------------------------------------------- /release-notes/source/_templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freescale/Documentation/HEAD/release-notes/source/_templates/layout.html -------------------------------------------------------------------------------- /release-notes/source/ack-sourcers.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freescale/Documentation/HEAD/release-notes/source/ack-sourcers.inc -------------------------------------------------------------------------------- /release-notes/source/barebox-mainline.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freescale/Documentation/HEAD/release-notes/source/barebox-mainline.inc -------------------------------------------------------------------------------- /release-notes/source/bootloader-default.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freescale/Documentation/HEAD/release-notes/source/bootloader-default.inc -------------------------------------------------------------------------------- /release-notes/source/bsp-scope.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freescale/Documentation/HEAD/release-notes/source/bsp-scope.rst -------------------------------------------------------------------------------- /release-notes/source/closed_bugs.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freescale/Documentation/HEAD/release-notes/source/closed_bugs.inc -------------------------------------------------------------------------------- /release-notes/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freescale/Documentation/HEAD/release-notes/source/conf.py -------------------------------------------------------------------------------- /release-notes/source/distros.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freescale/Documentation/HEAD/release-notes/source/distros.inc -------------------------------------------------------------------------------- /release-notes/source/fsl-community-bsp-supported-bootloaders-descr.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freescale/Documentation/HEAD/release-notes/source/fsl-community-bsp-supported-bootloaders-descr.inc -------------------------------------------------------------------------------- /release-notes/source/fsl-community-bsp-supported-kernels.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freescale/Documentation/HEAD/release-notes/source/fsl-community-bsp-supported-kernels.inc -------------------------------------------------------------------------------- /release-notes/source/fslxcmt.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freescale/Documentation/HEAD/release-notes/source/fslxcmt.inc -------------------------------------------------------------------------------- /release-notes/source/images.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freescale/Documentation/HEAD/release-notes/source/images.inc -------------------------------------------------------------------------------- /release-notes/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freescale/Documentation/HEAD/release-notes/source/index.rst -------------------------------------------------------------------------------- /release-notes/source/introduction.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freescale/Documentation/HEAD/release-notes/source/introduction.rst -------------------------------------------------------------------------------- /release-notes/source/known-issues.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freescale/Documentation/HEAD/release-notes/source/known-issues.rst -------------------------------------------------------------------------------- /release-notes/source/linux-default.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freescale/Documentation/HEAD/release-notes/source/linux-default.inc -------------------------------------------------------------------------------- /release-notes/source/machine-list.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freescale/Documentation/HEAD/release-notes/source/machine-list.inc -------------------------------------------------------------------------------- /release-notes/source/machines-with-maintainers.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freescale/Documentation/HEAD/release-notes/source/machines-with-maintainers.inc -------------------------------------------------------------------------------- /release-notes/source/machines-without-maintainers.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freescale/Documentation/HEAD/release-notes/source/machines-without-maintainers.inc -------------------------------------------------------------------------------- /release-notes/source/open_bugs.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freescale/Documentation/HEAD/release-notes/source/open_bugs.inc -------------------------------------------------------------------------------- /release-notes/source/packagegroups.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freescale/Documentation/HEAD/release-notes/source/packagegroups.inc -------------------------------------------------------------------------------- /release-notes/source/soc-pkg-optimization.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freescale/Documentation/HEAD/release-notes/source/soc-pkg-optimization.inc -------------------------------------------------------------------------------- /release-notes/source/soc-pkg.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freescale/Documentation/HEAD/release-notes/source/soc-pkg.inc -------------------------------------------------------------------------------- /release-notes/source/soc-tree.diag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freescale/Documentation/HEAD/release-notes/source/soc-tree.diag -------------------------------------------------------------------------------- /release-notes/source/source-code.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freescale/Documentation/HEAD/release-notes/source/source-code.rst -------------------------------------------------------------------------------- /release-notes/source/test-results.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freescale/Documentation/HEAD/release-notes/source/test-results.rst -------------------------------------------------------------------------------- /release-notes/source/upstream1.diag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freescale/Documentation/HEAD/release-notes/source/upstream1.diag -------------------------------------------------------------------------------- /release-notes/source/userspace-pkg.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freescale/Documentation/HEAD/release-notes/source/userspace-pkg.inc -------------------------------------------------------------------------------- /release-notes/source/variables.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freescale/Documentation/HEAD/release-notes/source/variables.inc -------------------------------------------------------------------------------- /scripts/bitbake-metadata2doc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freescale/Documentation/HEAD/scripts/bitbake-metadata2doc.py -------------------------------------------------------------------------------- /scripts/bitbake-metadata2doc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freescale/Documentation/HEAD/scripts/bitbake-metadata2doc.sh -------------------------------------------------------------------------------- /scripts/blockdiag.preample: -------------------------------------------------------------------------------- 1 | default_fontsize = 18; 2 | -------------------------------------------------------------------------------- /scripts/doc_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freescale/Documentation/HEAD/scripts/doc_utils.py -------------------------------------------------------------------------------- /scripts/extract-bitbake-metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freescale/Documentation/HEAD/scripts/extract-bitbake-metadata.py -------------------------------------------------------------------------------- /scripts/format_machine_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freescale/Documentation/HEAD/scripts/format_machine_list.py -------------------------------------------------------------------------------- /scripts/generate-bugs-table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freescale/Documentation/HEAD/scripts/generate-bugs-table.py -------------------------------------------------------------------------------- /scripts/output-machine-list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freescale/Documentation/HEAD/scripts/output-machine-list -------------------------------------------------------------------------------- /scripts/test-sheet-parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freescale/Documentation/HEAD/scripts/test-sheet-parser.py -------------------------------------------------------------------------------- /user-guide/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freescale/Documentation/HEAD/user-guide/Makefile -------------------------------------------------------------------------------- /user-guide/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freescale/Documentation/HEAD/user-guide/make.bat -------------------------------------------------------------------------------- /user-guide/source/_static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /user-guide/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freescale/Documentation/HEAD/user-guide/source/conf.py -------------------------------------------------------------------------------- /user-guide/source/devtasks.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freescale/Documentation/HEAD/user-guide/source/devtasks.rst -------------------------------------------------------------------------------- /user-guide/source/distro-list.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freescale/Documentation/HEAD/user-guide/source/distro-list.inc -------------------------------------------------------------------------------- /user-guide/source/distros.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freescale/Documentation/HEAD/user-guide/source/distros.rst -------------------------------------------------------------------------------- /user-guide/source/folders.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freescale/Documentation/HEAD/user-guide/source/folders.rst -------------------------------------------------------------------------------- /user-guide/source/image-list.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freescale/Documentation/HEAD/user-guide/source/image-list.inc -------------------------------------------------------------------------------- /user-guide/source/images.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freescale/Documentation/HEAD/user-guide/source/images.rst -------------------------------------------------------------------------------- /user-guide/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freescale/Documentation/HEAD/user-guide/source/index.rst -------------------------------------------------------------------------------- /user-guide/source/machines.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freescale/Documentation/HEAD/user-guide/source/machines.rst -------------------------------------------------------------------------------- /user-guide/source/metadata.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freescale/Documentation/HEAD/user-guide/source/metadata.rst -------------------------------------------------------------------------------- /user-guide/source/nsteps.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freescale/Documentation/HEAD/user-guide/source/nsteps.rst -------------------------------------------------------------------------------- /user-guide/source/weston.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Freescale/Documentation/HEAD/user-guide/source/weston.rst --------------------------------------------------------------------------------