You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
162 lines
4.7 KiB
Groovy
162 lines
4.7 KiB
Groovy
apply plugin: 'c'
|
|
apply plugin: 'java'
|
|
|
|
import java.io.FileInputStream;
|
|
import java.io.FileOutputStream;
|
|
import java.io.IOException;
|
|
import java.util.zip.GZIPInputStream;
|
|
import java.util.zip.GZIPOutputStream;
|
|
|
|
task wrapper(type: Wrapper) {
|
|
gradleVersion = '2.12'
|
|
}
|
|
|
|
model {
|
|
buildTypes {
|
|
release
|
|
}
|
|
|
|
components {
|
|
abootimg(NativeExecutableSpec) {
|
|
binaries.all {
|
|
cppCompiler.define 'HAS_BLKID'
|
|
linker.args "-lblkid"
|
|
}
|
|
}
|
|
}
|
|
|
|
components {
|
|
mkbootfs(NativeExecutableSpec) {
|
|
binaries.all {
|
|
}
|
|
}
|
|
}
|
|
|
|
components {
|
|
libmincrypt(NativeLibrarySpec) {
|
|
binaries.all {
|
|
}
|
|
}
|
|
mkbootimg(NativeExecutableSpec) {
|
|
binaries.all {
|
|
cCompiler.args '-std=c11'
|
|
lib library: "libmincrypt", linkage: 'static'
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
def workdir='build/unzip_boot'
|
|
task unpack_bootimg(type: Exec, dependsOn: 'abootimgExecutable') {
|
|
doFirst {
|
|
new File(workdir + '/root').mkdirs()
|
|
}
|
|
workingDir '.'
|
|
executable 'build/exe/abootimg/abootimg'
|
|
args = ['-x', 'boot.img', workdir+'/bootimg.cfg', workdir+'/kernel', workdir+'/ramdisk.img.gz']
|
|
}
|
|
|
|
task unpack_ramdisk_gz << {
|
|
unGnuzipFile(workdir+"/ramdisk.img.gz", workdir + "/ramdisk.img")
|
|
}
|
|
unpack_ramdisk_gz.dependsOn(unpack_bootimg)
|
|
|
|
task unpack_cpio(type: Exec, dependsOn: unpack_ramdisk_gz) {
|
|
workingDir workdir + "/root"
|
|
executable 'cpio'
|
|
args = ['-i', '-F', '../ramdisk.img']
|
|
}
|
|
|
|
task unpack(type: Delete, dependsOn: unpack_cpio) {
|
|
delete workdir + "/ramdisk.img.gz"
|
|
delete workdir + "/ramdisk.img"
|
|
}
|
|
|
|
task pack_ramdisk_and_gz { Task task ->
|
|
doLast {
|
|
ByteArrayOutputStream mkbootfs_out = new ByteArrayOutputStream()
|
|
task.project.exec {
|
|
commandLine = [
|
|
'build/exe/mkbootfs/mkbootfs', workdir + "/root"
|
|
]
|
|
standardOutput = mkbootfs_out
|
|
}
|
|
def ByteArrayInputStream gzip_in = new ByteArrayInputStream(mkbootfs_out.buf)
|
|
gnuZipFile(workdir + "/ramdisk.img.gz", gzip_in)
|
|
}
|
|
}
|
|
pack_ramdisk_and_gz.dependsOn('mkbootfsExecutable')
|
|
|
|
task pack_clear(type: Exec, dependsOn: [pack_ramdisk_and_gz, 'mkbootimgExecutable']) {
|
|
commandLine 'build/exe/mkbootimg/mkbootimg',
|
|
'--kernel', workdir + "/kernel",
|
|
'--ramdisk', workdir + "/ramdisk.img.gz",
|
|
'--cmdline', "cmdlineeeee",
|
|
'--base', '0x01000000',
|
|
'--output', 'boot.img.clear'
|
|
}
|
|
|
|
public void unGnuzipFile(String compressedFile, String decompressedFile) throws IOException {
|
|
byte[] buffer = new byte[1024];
|
|
try {
|
|
FileInputStream fileIn = new FileInputStream(compressedFile);
|
|
GZIPInputStream gZIPInputStream = new GZIPInputStream(fileIn);
|
|
FileOutputStream fileOutputStream = new FileOutputStream(decompressedFile);
|
|
int bytes_read;
|
|
while ((bytes_read = gZIPInputStream.read(buffer)) > 0) {
|
|
fileOutputStream.write(buffer, 0, bytes_read);
|
|
}
|
|
gZIPInputStream.close();
|
|
fileOutputStream.close();
|
|
System.out.println("The file was decompressed successfully!");
|
|
} catch (IOException ex) {
|
|
throw ex;
|
|
}
|
|
}
|
|
|
|
public void gnuZipFile(String compressedFile, InputStream fis) throws IOException {
|
|
byte[] buffer = new byte[1024];
|
|
try {
|
|
FileOutputStream fos = new FileOutputStream(compressedFile);
|
|
GZIPOutputStream gos = new GZIPOutputStream(fos);
|
|
|
|
int bytes_read;
|
|
while ((bytes_read = fis.read(buffer)) > 0) {
|
|
gos .write(buffer, 0, bytes_read);
|
|
}
|
|
gos.finish();
|
|
gos.close();
|
|
System.out.println("The file compressed successfully!");
|
|
} catch (IOException ex) {
|
|
throw ex;
|
|
}
|
|
}
|
|
|
|
public void gnuZipFile(String compressedFile, String decompressedFile) throws IOException {
|
|
byte[] buffer = new byte[1024];
|
|
try {
|
|
FileOutputStream fos = new FileOutputStream(compressedFile);
|
|
GZIPOutputStream gos = new GZIPOutputStream(fos);
|
|
|
|
FileInputStream fis = new FileInputStream(decompressedFile);
|
|
int bytes_read;
|
|
while ((bytes_read = fis.read(buffer)) > 0) {
|
|
gos .write(buffer, 0, bytes_read);
|
|
}
|
|
fis.close();
|
|
gos.finish();
|
|
gos.close();
|
|
System.out.println("The file compressed successfully!");
|
|
} catch (IOException ex) {
|
|
throw ex;
|
|
}
|
|
}
|
|
|
|
task pack(type: JavaExec, dependsOn: pack_clear) {
|
|
main = 'com.android.verity.BootSignature'
|
|
classpath = files("boot_signer/build/libs/boot_signer.jar")
|
|
maxHeapSize '512m'
|
|
args '/boot','boot.img.clear', 'security/verity.pk8', 'security/verity.x509.pem', 'boot.img.signed'
|
|
}
|
|
|