Created
July 17, 2011 16:33
-
-
Save jberkel/1087757 to your computer and use it in GitHub Desktop.
HOWTO: compile mkbootimg/mkbootfs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
get Android source code: http://source.android.com/source/downloading.html | |
$ cd /path/to/android-src | |
$ cd system/core/libmincrypt/ | |
$ gcc -c *.c -I../include | |
$ ar rcs libmincrypt.a *.o | |
$ cd ../mkbootimg | |
$ gcc mkbootimg.c -o mkbootimg -I../include ../libmincrypt/libmincrypt.a | |
$ cd ../cpio | |
$ gcc mkbootfs.c -o mkbootfs -I../include | |
copy system/core/mkbootimg/mkbootimg, system/core/cpio/mkbootfs to a directory in your path. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
mkbootimg has been removed on 2019-05-28:
https://android.googlesource.com/platform/system/core/+/4952ef749478683165e24a441496b46dfe0f64bb
Debian still has it in its repositories:
apt install mkbootimg