├── 00_Yocto_Intro └── 00-Yocto-Intro.md ├── 01_Flashing_BBB └── 01-Flashing-BBB.md ├── 02_Local_Conf └── 02_Local_Conf.md ├── 03_BBLAYERS_Conf └── 03_BBLAYERS_Conf.md ├── 04_Add_Package └── 04_Add_Packages.md ├── 05_Create_Layer └── 05_Create_Layer.md ├── 06_Basic_Variables └── 06_Basic_Variables.md ├── 07_Variable_Assignment └── 07_Variable_Assignment.md ├── 08_Hello_World_Recipe └── 08_Hello_World_Recipe.md ├── 09_Build_Tasks └── 09_Build_Tasks.md ├── 10_Patch └── 10_Patch.md ├── 11_RDEPENDS ├── 11_RDEPENDS.md └── rdepends-example │ ├── files │ └── helloWorld.sh │ └── rdepends-example.bb ├── 12_RPROVIDES └── 12_RPROVIDES.md ├── 24_SystemD_Init_Manager └── 24_SystemD_init_manager.md ├── 25_SystemD_Service_Recipe ├── 25_SystemD_Service_Recipe.md └── systemd-example │ ├── files │ ├── sysd.service │ └── sysd.sh │ └── systemd-example.bb └── bbb-example ├── bbb-example.bb └── files └── 0001-patch-example.patch /00_Yocto_Intro/00-Yocto-Intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Munawar-git/YoctoTutorials/HEAD/00_Yocto_Intro/00-Yocto-Intro.md -------------------------------------------------------------------------------- /01_Flashing_BBB/01-Flashing-BBB.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Munawar-git/YoctoTutorials/HEAD/01_Flashing_BBB/01-Flashing-BBB.md -------------------------------------------------------------------------------- /02_Local_Conf/02_Local_Conf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Munawar-git/YoctoTutorials/HEAD/02_Local_Conf/02_Local_Conf.md -------------------------------------------------------------------------------- /03_BBLAYERS_Conf/03_BBLAYERS_Conf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Munawar-git/YoctoTutorials/HEAD/03_BBLAYERS_Conf/03_BBLAYERS_Conf.md -------------------------------------------------------------------------------- /04_Add_Package/04_Add_Packages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Munawar-git/YoctoTutorials/HEAD/04_Add_Package/04_Add_Packages.md -------------------------------------------------------------------------------- /05_Create_Layer/05_Create_Layer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Munawar-git/YoctoTutorials/HEAD/05_Create_Layer/05_Create_Layer.md -------------------------------------------------------------------------------- /06_Basic_Variables/06_Basic_Variables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Munawar-git/YoctoTutorials/HEAD/06_Basic_Variables/06_Basic_Variables.md -------------------------------------------------------------------------------- /07_Variable_Assignment/07_Variable_Assignment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Munawar-git/YoctoTutorials/HEAD/07_Variable_Assignment/07_Variable_Assignment.md -------------------------------------------------------------------------------- /08_Hello_World_Recipe/08_Hello_World_Recipe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Munawar-git/YoctoTutorials/HEAD/08_Hello_World_Recipe/08_Hello_World_Recipe.md -------------------------------------------------------------------------------- /09_Build_Tasks/09_Build_Tasks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Munawar-git/YoctoTutorials/HEAD/09_Build_Tasks/09_Build_Tasks.md -------------------------------------------------------------------------------- /10_Patch/10_Patch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Munawar-git/YoctoTutorials/HEAD/10_Patch/10_Patch.md -------------------------------------------------------------------------------- /11_RDEPENDS/11_RDEPENDS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Munawar-git/YoctoTutorials/HEAD/11_RDEPENDS/11_RDEPENDS.md -------------------------------------------------------------------------------- /11_RDEPENDS/rdepends-example/files/helloWorld.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | echo "Hello World" -------------------------------------------------------------------------------- /11_RDEPENDS/rdepends-example/rdepends-example.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Munawar-git/YoctoTutorials/HEAD/11_RDEPENDS/rdepends-example/rdepends-example.bb -------------------------------------------------------------------------------- /12_RPROVIDES/12_RPROVIDES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Munawar-git/YoctoTutorials/HEAD/12_RPROVIDES/12_RPROVIDES.md -------------------------------------------------------------------------------- /24_SystemD_Init_Manager/24_SystemD_init_manager.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Munawar-git/YoctoTutorials/HEAD/24_SystemD_Init_Manager/24_SystemD_init_manager.md -------------------------------------------------------------------------------- /25_SystemD_Service_Recipe/25_SystemD_Service_Recipe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Munawar-git/YoctoTutorials/HEAD/25_SystemD_Service_Recipe/25_SystemD_Service_Recipe.md -------------------------------------------------------------------------------- /25_SystemD_Service_Recipe/systemd-example/files/sysd.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Munawar-git/YoctoTutorials/HEAD/25_SystemD_Service_Recipe/systemd-example/files/sysd.service -------------------------------------------------------------------------------- /25_SystemD_Service_Recipe/systemd-example/files/sysd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Munawar-git/YoctoTutorials/HEAD/25_SystemD_Service_Recipe/systemd-example/files/sysd.sh -------------------------------------------------------------------------------- /25_SystemD_Service_Recipe/systemd-example/systemd-example.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Munawar-git/YoctoTutorials/HEAD/25_SystemD_Service_Recipe/systemd-example/systemd-example.bb -------------------------------------------------------------------------------- /bbb-example/bbb-example.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Munawar-git/YoctoTutorials/HEAD/bbb-example/bbb-example.bb -------------------------------------------------------------------------------- /bbb-example/files/0001-patch-example.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Munawar-git/YoctoTutorials/HEAD/bbb-example/files/0001-patch-example.patch --------------------------------------------------------------------------------