08f7eadcee
Raw binaries are used in bare-metal environments such as early boot of pVMs (protected virtual machines). Add a new target rule called 'raw_binary' which converts an executable to the raw binary format. Test: m pvmfw Change-Id: I701b703a0f12df891b714fe29e320914f167cd04
27 lines
556 B
Text
27 lines
556 B
Text
package {
|
|
default_applicable_licenses: ["Android-Apache-2.0"],
|
|
}
|
|
|
|
bootstrap_go_package {
|
|
name: "soong-filesystem",
|
|
pkgPath: "android/soong/filesystem",
|
|
deps: [
|
|
"blueprint",
|
|
"soong",
|
|
"soong-android",
|
|
"soong-linkerconfig",
|
|
],
|
|
srcs: [
|
|
"bootimg.go",
|
|
"filesystem.go",
|
|
"logical_partition.go",
|
|
"raw_binary.go",
|
|
"system_image.go",
|
|
"vbmeta.go",
|
|
"testing.go",
|
|
],
|
|
testSrcs: [
|
|
"filesystem_test.go",
|
|
],
|
|
pluginFor: ["soong_build"],
|
|
}
|