A port of the Qualcomm Android bootctrl HAL for musl/glibc userspace.
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.
|
project('qbootctl', 'cpp')
|
|
|
|
deps = [
|
|
dependency('zlib'),
|
|
]
|
|
|
|
src = [
|
|
'qbootctl.cpp',
|
|
'gpt-utils.cpp',
|
|
'ufs-bsg.cpp',
|
|
]
|
|
|
|
inc = [
|
|
include_directories('.'),
|
|
]
|
|
|
|
executable('qbootctl', src,
|
|
include_directories: inc,
|
|
dependencies: deps,
|
|
install: true,
|
|
c_args: [],
|
|
)
|
|
|