You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
53 lines
796 B
53 lines
796 B
cc_binary_host {
|
|
name: "dtbhtoolExynos",
|
|
shared_libs: [
|
|
"libdtbimg",
|
|
],
|
|
static_libs: [
|
|
"libfdt",
|
|
],
|
|
srcs: [
|
|
"mkdtbimg.c",
|
|
],
|
|
local_include_dirs: ["libdtbimg"],
|
|
}
|
|
|
|
cc_binary_host {
|
|
name: "mkdtbhbootimg",
|
|
shared_libs: [
|
|
"libdtbimg",
|
|
"libcrypto",
|
|
],
|
|
static_libs: [
|
|
"libfdt",
|
|
],
|
|
srcs: [
|
|
"mkbootimg.c",
|
|
],
|
|
}
|
|
|
|
cc_binary_host {
|
|
name: "unpackdtbhbootimg",
|
|
srcs: [
|
|
"unpackbootimg.c",
|
|
],
|
|
}
|
|
|
|
cc_binary_host {
|
|
name: "unpackdtbhimg",
|
|
srcs: [
|
|
"unpackdtbhimg.c",
|
|
],
|
|
}
|
|
|
|
cc_library {
|
|
name: "libdtbimg",
|
|
host_supported: true,
|
|
srcs: [
|
|
"dtbimg.c",
|
|
],
|
|
static_libs: [
|
|
"libfdt",
|
|
],
|
|
local_include_dirs: ["libdtbimg"],
|
|
}
|
|
|