├── COPYING.MIT ├── README ├── classes-recipe ├── image_types_zchunk.bbclass ├── swupdate-common.bbclass ├── swupdate-enc.bbclass ├── swupdate-image.bbclass ├── swupdate-lib.bbclass └── swupdate.bbclass ├── conf └── layer.conf ├── recipes-core ├── initscripts-swupdate │ ├── initscripts-swupdate-usb.bb │ └── initscripts-swupdate-usb │ │ └── rcS.swupdate └── packagegroup │ └── packagegroup-core-standalone-sdk-target.bbappend ├── recipes-extended └── images │ ├── swupdate-gui-image.bb │ ├── swupdate-image.bb │ └── swupdate-image.inc ├── recipes-graphics └── lvgl │ └── lvgl_%.bbappend ├── recipes-lua ├── luafilesystem │ ├── files │ │ └── 0001-Fix-for-OE.patch │ └── luafilesystem_git.bb ├── luasocket │ ├── files │ │ └── 0001-fix-for-OE.patch │ └── luasocket_git.bb ├── swupdate-lualoader │ ├── swupdate-lualoader │ │ └── swupdate_handlers.lua │ └── swupdate-lualoader_1.0.bb └── tekui │ ├── files │ └── 0001-Fix-config-for-OE.patch │ └── tekui_1.12.bb └── recipes-support ├── rescuegui ├── files │ ├── config.lua │ ├── rescuegui │ ├── swupdate-gui │ └── swupdate-gui.service ├── rescuegui_git.bb └── swupdate-gui_git.bb └── swupdate ├── swupdate.inc ├── swupdate ├── 0001-BUG-regression-checking-IVT.patch ├── 10-mongoose-args ├── 90-start-progress ├── defconfig ├── swupdate ├── swupdate-progress.service ├── swupdate-usb.rules ├── swupdate-usb@.service ├── swupdate.service ├── swupdate.sh ├── swupdate.socket.tmpl └── tmpfiles-swupdate.conf ├── swupdate_2023.12.1.bb ├── swupdate_2024.05.bb ├── swupdate_2024.12.bb ├── swupdate_2025.05.bb └── swupdate_git.bb /COPYING.MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbabic/meta-swupdate/HEAD/COPYING.MIT -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbabic/meta-swupdate/HEAD/README -------------------------------------------------------------------------------- /classes-recipe/image_types_zchunk.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbabic/meta-swupdate/HEAD/classes-recipe/image_types_zchunk.bbclass -------------------------------------------------------------------------------- /classes-recipe/swupdate-common.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbabic/meta-swupdate/HEAD/classes-recipe/swupdate-common.bbclass -------------------------------------------------------------------------------- /classes-recipe/swupdate-enc.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbabic/meta-swupdate/HEAD/classes-recipe/swupdate-enc.bbclass -------------------------------------------------------------------------------- /classes-recipe/swupdate-image.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbabic/meta-swupdate/HEAD/classes-recipe/swupdate-image.bbclass -------------------------------------------------------------------------------- /classes-recipe/swupdate-lib.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbabic/meta-swupdate/HEAD/classes-recipe/swupdate-lib.bbclass -------------------------------------------------------------------------------- /classes-recipe/swupdate.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbabic/meta-swupdate/HEAD/classes-recipe/swupdate.bbclass -------------------------------------------------------------------------------- /conf/layer.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbabic/meta-swupdate/HEAD/conf/layer.conf -------------------------------------------------------------------------------- /recipes-core/initscripts-swupdate/initscripts-swupdate-usb.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbabic/meta-swupdate/HEAD/recipes-core/initscripts-swupdate/initscripts-swupdate-usb.bb -------------------------------------------------------------------------------- /recipes-core/initscripts-swupdate/initscripts-swupdate-usb/rcS.swupdate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbabic/meta-swupdate/HEAD/recipes-core/initscripts-swupdate/initscripts-swupdate-usb/rcS.swupdate -------------------------------------------------------------------------------- /recipes-core/packagegroup/packagegroup-core-standalone-sdk-target.bbappend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbabic/meta-swupdate/HEAD/recipes-core/packagegroup/packagegroup-core-standalone-sdk-target.bbappend -------------------------------------------------------------------------------- /recipes-extended/images/swupdate-gui-image.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbabic/meta-swupdate/HEAD/recipes-extended/images/swupdate-gui-image.bb -------------------------------------------------------------------------------- /recipes-extended/images/swupdate-image.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbabic/meta-swupdate/HEAD/recipes-extended/images/swupdate-image.bb -------------------------------------------------------------------------------- /recipes-extended/images/swupdate-image.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbabic/meta-swupdate/HEAD/recipes-extended/images/swupdate-image.inc -------------------------------------------------------------------------------- /recipes-graphics/lvgl/lvgl_%.bbappend: -------------------------------------------------------------------------------- 1 | PACKAGECONFIG += "fbdev gridnav" 2 | -------------------------------------------------------------------------------- /recipes-lua/luafilesystem/files/0001-Fix-for-OE.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbabic/meta-swupdate/HEAD/recipes-lua/luafilesystem/files/0001-Fix-for-OE.patch -------------------------------------------------------------------------------- /recipes-lua/luafilesystem/luafilesystem_git.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbabic/meta-swupdate/HEAD/recipes-lua/luafilesystem/luafilesystem_git.bb -------------------------------------------------------------------------------- /recipes-lua/luasocket/files/0001-fix-for-OE.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbabic/meta-swupdate/HEAD/recipes-lua/luasocket/files/0001-fix-for-OE.patch -------------------------------------------------------------------------------- /recipes-lua/luasocket/luasocket_git.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbabic/meta-swupdate/HEAD/recipes-lua/luasocket/luasocket_git.bb -------------------------------------------------------------------------------- /recipes-lua/swupdate-lualoader/swupdate-lualoader/swupdate_handlers.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbabic/meta-swupdate/HEAD/recipes-lua/swupdate-lualoader/swupdate-lualoader/swupdate_handlers.lua -------------------------------------------------------------------------------- /recipes-lua/swupdate-lualoader/swupdate-lualoader_1.0.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbabic/meta-swupdate/HEAD/recipes-lua/swupdate-lualoader/swupdate-lualoader_1.0.bb -------------------------------------------------------------------------------- /recipes-lua/tekui/files/0001-Fix-config-for-OE.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbabic/meta-swupdate/HEAD/recipes-lua/tekui/files/0001-Fix-config-for-OE.patch -------------------------------------------------------------------------------- /recipes-lua/tekui/tekui_1.12.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbabic/meta-swupdate/HEAD/recipes-lua/tekui/tekui_1.12.bb -------------------------------------------------------------------------------- /recipes-support/rescuegui/files/config.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbabic/meta-swupdate/HEAD/recipes-support/rescuegui/files/config.lua -------------------------------------------------------------------------------- /recipes-support/rescuegui/files/rescuegui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbabic/meta-swupdate/HEAD/recipes-support/rescuegui/files/rescuegui -------------------------------------------------------------------------------- /recipes-support/rescuegui/files/swupdate-gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbabic/meta-swupdate/HEAD/recipes-support/rescuegui/files/swupdate-gui -------------------------------------------------------------------------------- /recipes-support/rescuegui/files/swupdate-gui.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbabic/meta-swupdate/HEAD/recipes-support/rescuegui/files/swupdate-gui.service -------------------------------------------------------------------------------- /recipes-support/rescuegui/rescuegui_git.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbabic/meta-swupdate/HEAD/recipes-support/rescuegui/rescuegui_git.bb -------------------------------------------------------------------------------- /recipes-support/rescuegui/swupdate-gui_git.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbabic/meta-swupdate/HEAD/recipes-support/rescuegui/swupdate-gui_git.bb -------------------------------------------------------------------------------- /recipes-support/swupdate/swupdate.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbabic/meta-swupdate/HEAD/recipes-support/swupdate/swupdate.inc -------------------------------------------------------------------------------- /recipes-support/swupdate/swupdate/0001-BUG-regression-checking-IVT.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbabic/meta-swupdate/HEAD/recipes-support/swupdate/swupdate/0001-BUG-regression-checking-IVT.patch -------------------------------------------------------------------------------- /recipes-support/swupdate/swupdate/10-mongoose-args: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbabic/meta-swupdate/HEAD/recipes-support/swupdate/swupdate/10-mongoose-args -------------------------------------------------------------------------------- /recipes-support/swupdate/swupdate/90-start-progress: -------------------------------------------------------------------------------- 1 | exec /usr/bin/swupdate-progress -w -r & 2 | -------------------------------------------------------------------------------- /recipes-support/swupdate/swupdate/defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbabic/meta-swupdate/HEAD/recipes-support/swupdate/swupdate/defconfig -------------------------------------------------------------------------------- /recipes-support/swupdate/swupdate/swupdate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbabic/meta-swupdate/HEAD/recipes-support/swupdate/swupdate/swupdate -------------------------------------------------------------------------------- /recipes-support/swupdate/swupdate/swupdate-progress.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbabic/meta-swupdate/HEAD/recipes-support/swupdate/swupdate/swupdate-progress.service -------------------------------------------------------------------------------- /recipes-support/swupdate/swupdate/swupdate-usb.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbabic/meta-swupdate/HEAD/recipes-support/swupdate/swupdate/swupdate-usb.rules -------------------------------------------------------------------------------- /recipes-support/swupdate/swupdate/swupdate-usb@.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbabic/meta-swupdate/HEAD/recipes-support/swupdate/swupdate/swupdate-usb@.service -------------------------------------------------------------------------------- /recipes-support/swupdate/swupdate/swupdate.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbabic/meta-swupdate/HEAD/recipes-support/swupdate/swupdate/swupdate.service -------------------------------------------------------------------------------- /recipes-support/swupdate/swupdate/swupdate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbabic/meta-swupdate/HEAD/recipes-support/swupdate/swupdate/swupdate.sh -------------------------------------------------------------------------------- /recipes-support/swupdate/swupdate/swupdate.socket.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbabic/meta-swupdate/HEAD/recipes-support/swupdate/swupdate/swupdate.socket.tmpl -------------------------------------------------------------------------------- /recipes-support/swupdate/swupdate/tmpfiles-swupdate.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbabic/meta-swupdate/HEAD/recipes-support/swupdate/swupdate/tmpfiles-swupdate.conf -------------------------------------------------------------------------------- /recipes-support/swupdate/swupdate_2023.12.1.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbabic/meta-swupdate/HEAD/recipes-support/swupdate/swupdate_2023.12.1.bb -------------------------------------------------------------------------------- /recipes-support/swupdate/swupdate_2024.05.bb: -------------------------------------------------------------------------------- 1 | require swupdate.inc 2 | 3 | SRCREV = "435c7debf8cb361a77da8c0540c5cf6f910194a6" 4 | -------------------------------------------------------------------------------- /recipes-support/swupdate/swupdate_2024.12.bb: -------------------------------------------------------------------------------- 1 | SRCBRANCH = "2024.12-y" 2 | SRCREV = "3077da2018f2f013872fb1e1213670c075fdd7ce" 3 | require swupdate.inc 4 | -------------------------------------------------------------------------------- /recipes-support/swupdate/swupdate_2025.05.bb: -------------------------------------------------------------------------------- 1 | SRCBRANCH = "master" 2 | SRCREV = "498de8f1c086fae1eeeb64b045d0f861575b1e66" 3 | require swupdate.inc 4 | -------------------------------------------------------------------------------- /recipes-support/swupdate/swupdate_git.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbabic/meta-swupdate/HEAD/recipes-support/swupdate/swupdate_git.bb --------------------------------------------------------------------------------