├── Android.mk ├── README ├── lib ├── api │ ├── bootimage.c │ ├── bootimage_extract.c │ ├── bootimage_file.c │ ├── bootimage_file_extract.c │ ├── bootimage_file_print.c │ ├── bootimage_print.c │ └── bootimage_utils.c ├── include │ ├── api │ │ ├── bootimage.h │ │ ├── bootimage_extract.h │ │ ├── bootimage_file_extract.h │ │ ├── bootimage_file_print.h │ │ ├── bootimage_print.h │ │ ├── bootimage_utils.h │ │ ├── errors.h │ │ └── utils.h │ ├── biutils.h │ └── private │ │ ├── api.h │ │ ├── archive.h │ │ ├── bootimage.h │ │ ├── bootimage_utils.h │ │ ├── checks.h │ │ ├── errors.h │ │ ├── factory_images.h │ │ ├── kernel.h │ │ ├── print.h │ │ ├── trace.h │ │ └── utils.h └── private │ ├── archive.c │ ├── bootimage.c │ ├── bootimage_utils.c │ ├── checks.c │ ├── kernel.c │ ├── print.c │ ├── trace.c │ └── utils.c ├── src ├── bootimage_utils_options.c ├── bootimage_utils_private.h ├── file.c ├── help.c ├── main.c ├── print_header.c └── strings.h ├── test1.c └── windows ├── memmem.c ├── mman.c ├── mman.vcproj └── sys └── mman.h /Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevd/android_external_bootimage_utils/HEAD/Android.mk -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevd/android_external_bootimage_utils/HEAD/README -------------------------------------------------------------------------------- /lib/api/bootimage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevd/android_external_bootimage_utils/HEAD/lib/api/bootimage.c -------------------------------------------------------------------------------- /lib/api/bootimage_extract.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevd/android_external_bootimage_utils/HEAD/lib/api/bootimage_extract.c -------------------------------------------------------------------------------- /lib/api/bootimage_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevd/android_external_bootimage_utils/HEAD/lib/api/bootimage_file.c -------------------------------------------------------------------------------- /lib/api/bootimage_file_extract.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevd/android_external_bootimage_utils/HEAD/lib/api/bootimage_file_extract.c -------------------------------------------------------------------------------- /lib/api/bootimage_file_print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevd/android_external_bootimage_utils/HEAD/lib/api/bootimage_file_print.c -------------------------------------------------------------------------------- /lib/api/bootimage_print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevd/android_external_bootimage_utils/HEAD/lib/api/bootimage_print.c -------------------------------------------------------------------------------- /lib/api/bootimage_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevd/android_external_bootimage_utils/HEAD/lib/api/bootimage_utils.c -------------------------------------------------------------------------------- /lib/include/api/bootimage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevd/android_external_bootimage_utils/HEAD/lib/include/api/bootimage.h -------------------------------------------------------------------------------- /lib/include/api/bootimage_extract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevd/android_external_bootimage_utils/HEAD/lib/include/api/bootimage_extract.h -------------------------------------------------------------------------------- /lib/include/api/bootimage_file_extract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevd/android_external_bootimage_utils/HEAD/lib/include/api/bootimage_file_extract.h -------------------------------------------------------------------------------- /lib/include/api/bootimage_file_print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevd/android_external_bootimage_utils/HEAD/lib/include/api/bootimage_file_print.h -------------------------------------------------------------------------------- /lib/include/api/bootimage_print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevd/android_external_bootimage_utils/HEAD/lib/include/api/bootimage_print.h -------------------------------------------------------------------------------- /lib/include/api/bootimage_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevd/android_external_bootimage_utils/HEAD/lib/include/api/bootimage_utils.h -------------------------------------------------------------------------------- /lib/include/api/errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevd/android_external_bootimage_utils/HEAD/lib/include/api/errors.h -------------------------------------------------------------------------------- /lib/include/api/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevd/android_external_bootimage_utils/HEAD/lib/include/api/utils.h -------------------------------------------------------------------------------- /lib/include/biutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevd/android_external_bootimage_utils/HEAD/lib/include/biutils.h -------------------------------------------------------------------------------- /lib/include/private/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevd/android_external_bootimage_utils/HEAD/lib/include/private/api.h -------------------------------------------------------------------------------- /lib/include/private/archive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevd/android_external_bootimage_utils/HEAD/lib/include/private/archive.h -------------------------------------------------------------------------------- /lib/include/private/bootimage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevd/android_external_bootimage_utils/HEAD/lib/include/private/bootimage.h -------------------------------------------------------------------------------- /lib/include/private/bootimage_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevd/android_external_bootimage_utils/HEAD/lib/include/private/bootimage_utils.h -------------------------------------------------------------------------------- /lib/include/private/checks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevd/android_external_bootimage_utils/HEAD/lib/include/private/checks.h -------------------------------------------------------------------------------- /lib/include/private/errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevd/android_external_bootimage_utils/HEAD/lib/include/private/errors.h -------------------------------------------------------------------------------- /lib/include/private/factory_images.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevd/android_external_bootimage_utils/HEAD/lib/include/private/factory_images.h -------------------------------------------------------------------------------- /lib/include/private/kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevd/android_external_bootimage_utils/HEAD/lib/include/private/kernel.h -------------------------------------------------------------------------------- /lib/include/private/print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevd/android_external_bootimage_utils/HEAD/lib/include/private/print.h -------------------------------------------------------------------------------- /lib/include/private/trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevd/android_external_bootimage_utils/HEAD/lib/include/private/trace.h -------------------------------------------------------------------------------- /lib/include/private/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevd/android_external_bootimage_utils/HEAD/lib/include/private/utils.h -------------------------------------------------------------------------------- /lib/private/archive.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevd/android_external_bootimage_utils/HEAD/lib/private/archive.c -------------------------------------------------------------------------------- /lib/private/bootimage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevd/android_external_bootimage_utils/HEAD/lib/private/bootimage.c -------------------------------------------------------------------------------- /lib/private/bootimage_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevd/android_external_bootimage_utils/HEAD/lib/private/bootimage_utils.c -------------------------------------------------------------------------------- /lib/private/checks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevd/android_external_bootimage_utils/HEAD/lib/private/checks.c -------------------------------------------------------------------------------- /lib/private/kernel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevd/android_external_bootimage_utils/HEAD/lib/private/kernel.c -------------------------------------------------------------------------------- /lib/private/print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevd/android_external_bootimage_utils/HEAD/lib/private/print.c -------------------------------------------------------------------------------- /lib/private/trace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevd/android_external_bootimage_utils/HEAD/lib/private/trace.c -------------------------------------------------------------------------------- /lib/private/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevd/android_external_bootimage_utils/HEAD/lib/private/utils.c -------------------------------------------------------------------------------- /src/bootimage_utils_options.c: -------------------------------------------------------------------------------- 1 | int bootimage 2 | -------------------------------------------------------------------------------- /src/bootimage_utils_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevd/android_external_bootimage_utils/HEAD/src/bootimage_utils_private.h -------------------------------------------------------------------------------- /src/file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevd/android_external_bootimage_utils/HEAD/src/file.c -------------------------------------------------------------------------------- /src/help.c: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevd/android_external_bootimage_utils/HEAD/src/main.c -------------------------------------------------------------------------------- /src/print_header.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevd/android_external_bootimage_utils/HEAD/src/print_header.c -------------------------------------------------------------------------------- /src/strings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevd/android_external_bootimage_utils/HEAD/src/strings.h -------------------------------------------------------------------------------- /test1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevd/android_external_bootimage_utils/HEAD/test1.c -------------------------------------------------------------------------------- /windows/memmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevd/android_external_bootimage_utils/HEAD/windows/memmem.c -------------------------------------------------------------------------------- /windows/mman.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevd/android_external_bootimage_utils/HEAD/windows/mman.c -------------------------------------------------------------------------------- /windows/mman.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevd/android_external_bootimage_utils/HEAD/windows/mman.vcproj -------------------------------------------------------------------------------- /windows/sys/mman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevd/android_external_bootimage_utils/HEAD/windows/sys/mman.h --------------------------------------------------------------------------------