├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── amldump.sh ├── amlpack.sh ├── amlunpack.sh ├── awpack.sh ├── awunpack.sh ├── bin ├── OpenixCard ├── afptool ├── aml_image_v2_packer ├── aml_sdc_burn.ini ├── ampack ├── blockimgdiff.py ├── boot-resource.ini ├── common.py ├── dtbSplit ├── dtbTool ├── ext4.py ├── extract.erofs ├── fsbuild ├── gettype ├── img2sdat.py ├── imgextractor.py ├── imgrepacker ├── libbase.so ├── libc++.so ├── libcrypto-host.so ├── libcrypto_utils.so ├── libext4_utils.so ├── liblog.so ├── liblp.so ├── libsparse-host.so ├── libz-host.so ├── logo_img_packer ├── lpmake ├── lpunpack ├── make_ext4fs ├── mkfs.erofs ├── rangelib.py ├── resize2fs ├── resource_tool ├── rkImageMaker ├── sdat2img.py └── update ├── clean.sh ├── common ├── extract_images.sh ├── extract_super.sh ├── make_image.sh ├── make_super.sh ├── pack_boot.sh ├── unpack_boot.sh └── write_perm.sh ├── dump_to_aml.sh ├── logo.png ├── pack_zip_to_aml.sh ├── resign.sh ├── rkpack.sh └── rkunpack.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/althafvly/AmlogicKitchen/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/althafvly/AmlogicKitchen/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/althafvly/AmlogicKitchen/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/althafvly/AmlogicKitchen/HEAD/README.md -------------------------------------------------------------------------------- /amldump.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/althafvly/AmlogicKitchen/HEAD/amldump.sh -------------------------------------------------------------------------------- /amlpack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/althafvly/AmlogicKitchen/HEAD/amlpack.sh -------------------------------------------------------------------------------- /amlunpack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/althafvly/AmlogicKitchen/HEAD/amlunpack.sh -------------------------------------------------------------------------------- /awpack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/althafvly/AmlogicKitchen/HEAD/awpack.sh -------------------------------------------------------------------------------- /awunpack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/althafvly/AmlogicKitchen/HEAD/awunpack.sh -------------------------------------------------------------------------------- /bin/OpenixCard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/althafvly/AmlogicKitchen/HEAD/bin/OpenixCard -------------------------------------------------------------------------------- /bin/afptool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/althafvly/AmlogicKitchen/HEAD/bin/afptool -------------------------------------------------------------------------------- /bin/aml_image_v2_packer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/althafvly/AmlogicKitchen/HEAD/bin/aml_image_v2_packer -------------------------------------------------------------------------------- /bin/aml_sdc_burn.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/althafvly/AmlogicKitchen/HEAD/bin/aml_sdc_burn.ini -------------------------------------------------------------------------------- /bin/ampack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/althafvly/AmlogicKitchen/HEAD/bin/ampack -------------------------------------------------------------------------------- /bin/blockimgdiff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/althafvly/AmlogicKitchen/HEAD/bin/blockimgdiff.py -------------------------------------------------------------------------------- /bin/boot-resource.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/althafvly/AmlogicKitchen/HEAD/bin/boot-resource.ini -------------------------------------------------------------------------------- /bin/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/althafvly/AmlogicKitchen/HEAD/bin/common.py -------------------------------------------------------------------------------- /bin/dtbSplit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/althafvly/AmlogicKitchen/HEAD/bin/dtbSplit -------------------------------------------------------------------------------- /bin/dtbTool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/althafvly/AmlogicKitchen/HEAD/bin/dtbTool -------------------------------------------------------------------------------- /bin/ext4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/althafvly/AmlogicKitchen/HEAD/bin/ext4.py -------------------------------------------------------------------------------- /bin/extract.erofs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/althafvly/AmlogicKitchen/HEAD/bin/extract.erofs -------------------------------------------------------------------------------- /bin/fsbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/althafvly/AmlogicKitchen/HEAD/bin/fsbuild -------------------------------------------------------------------------------- /bin/gettype: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/althafvly/AmlogicKitchen/HEAD/bin/gettype -------------------------------------------------------------------------------- /bin/img2sdat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/althafvly/AmlogicKitchen/HEAD/bin/img2sdat.py -------------------------------------------------------------------------------- /bin/imgextractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/althafvly/AmlogicKitchen/HEAD/bin/imgextractor.py -------------------------------------------------------------------------------- /bin/imgrepacker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/althafvly/AmlogicKitchen/HEAD/bin/imgrepacker -------------------------------------------------------------------------------- /bin/libbase.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/althafvly/AmlogicKitchen/HEAD/bin/libbase.so -------------------------------------------------------------------------------- /bin/libc++.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/althafvly/AmlogicKitchen/HEAD/bin/libc++.so -------------------------------------------------------------------------------- /bin/libcrypto-host.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/althafvly/AmlogicKitchen/HEAD/bin/libcrypto-host.so -------------------------------------------------------------------------------- /bin/libcrypto_utils.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/althafvly/AmlogicKitchen/HEAD/bin/libcrypto_utils.so -------------------------------------------------------------------------------- /bin/libext4_utils.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/althafvly/AmlogicKitchen/HEAD/bin/libext4_utils.so -------------------------------------------------------------------------------- /bin/liblog.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/althafvly/AmlogicKitchen/HEAD/bin/liblog.so -------------------------------------------------------------------------------- /bin/liblp.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/althafvly/AmlogicKitchen/HEAD/bin/liblp.so -------------------------------------------------------------------------------- /bin/libsparse-host.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/althafvly/AmlogicKitchen/HEAD/bin/libsparse-host.so -------------------------------------------------------------------------------- /bin/libz-host.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/althafvly/AmlogicKitchen/HEAD/bin/libz-host.so -------------------------------------------------------------------------------- /bin/logo_img_packer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/althafvly/AmlogicKitchen/HEAD/bin/logo_img_packer -------------------------------------------------------------------------------- /bin/lpmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/althafvly/AmlogicKitchen/HEAD/bin/lpmake -------------------------------------------------------------------------------- /bin/lpunpack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/althafvly/AmlogicKitchen/HEAD/bin/lpunpack -------------------------------------------------------------------------------- /bin/make_ext4fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/althafvly/AmlogicKitchen/HEAD/bin/make_ext4fs -------------------------------------------------------------------------------- /bin/mkfs.erofs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/althafvly/AmlogicKitchen/HEAD/bin/mkfs.erofs -------------------------------------------------------------------------------- /bin/rangelib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/althafvly/AmlogicKitchen/HEAD/bin/rangelib.py -------------------------------------------------------------------------------- /bin/resize2fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/althafvly/AmlogicKitchen/HEAD/bin/resize2fs -------------------------------------------------------------------------------- /bin/resource_tool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/althafvly/AmlogicKitchen/HEAD/bin/resource_tool -------------------------------------------------------------------------------- /bin/rkImageMaker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/althafvly/AmlogicKitchen/HEAD/bin/rkImageMaker -------------------------------------------------------------------------------- /bin/sdat2img.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/althafvly/AmlogicKitchen/HEAD/bin/sdat2img.py -------------------------------------------------------------------------------- /bin/update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/althafvly/AmlogicKitchen/HEAD/bin/update -------------------------------------------------------------------------------- /clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/althafvly/AmlogicKitchen/HEAD/clean.sh -------------------------------------------------------------------------------- /common/extract_images.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/althafvly/AmlogicKitchen/HEAD/common/extract_images.sh -------------------------------------------------------------------------------- /common/extract_super.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/althafvly/AmlogicKitchen/HEAD/common/extract_super.sh -------------------------------------------------------------------------------- /common/make_image.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/althafvly/AmlogicKitchen/HEAD/common/make_image.sh -------------------------------------------------------------------------------- /common/make_super.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/althafvly/AmlogicKitchen/HEAD/common/make_super.sh -------------------------------------------------------------------------------- /common/pack_boot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/althafvly/AmlogicKitchen/HEAD/common/pack_boot.sh -------------------------------------------------------------------------------- /common/unpack_boot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/althafvly/AmlogicKitchen/HEAD/common/unpack_boot.sh -------------------------------------------------------------------------------- /common/write_perm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/althafvly/AmlogicKitchen/HEAD/common/write_perm.sh -------------------------------------------------------------------------------- /dump_to_aml.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/althafvly/AmlogicKitchen/HEAD/dump_to_aml.sh -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/althafvly/AmlogicKitchen/HEAD/logo.png -------------------------------------------------------------------------------- /pack_zip_to_aml.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/althafvly/AmlogicKitchen/HEAD/pack_zip_to_aml.sh -------------------------------------------------------------------------------- /resign.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/althafvly/AmlogicKitchen/HEAD/resign.sh -------------------------------------------------------------------------------- /rkpack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/althafvly/AmlogicKitchen/HEAD/rkpack.sh -------------------------------------------------------------------------------- /rkunpack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/althafvly/AmlogicKitchen/HEAD/rkunpack.sh --------------------------------------------------------------------------------