mirror of
https://gitlab.com/mobian1/eg25-manager.git
synced 2025-08-29 23:32:14 +02:00
The PinePhone Pro uses the same EG25 modem as the OG PinePhone, but with a different SoC. It also uses an ALC5616 audio codec directly hooked up to the modem (which is I2S master in this case). The config is therefore almost identical to the PinePhone rev1.2 except for the gpios, UART port used and `AT+QDAI` config (to account for the different audio setup).
25 lines
512 B
Meson
25 lines
512 B
Meson
#
|
|
# Copyright (C) 2020 Arnaud Ferraris <arnaud.ferraris@gmail.com>
|
|
#
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
#
|
|
|
|
conf_files = [
|
|
'pine64,pinephone-1.0.toml',
|
|
'pine64,pinephone-1.1.toml',
|
|
'pine64,pinephone-1.2.toml',
|
|
'pine64,pinephone-pro.toml',
|
|
]
|
|
|
|
install_data(conf_files)
|
|
|
|
serviceconf = configuration_data()
|
|
serviceconf.set('bindir', bindir)
|
|
configure_file(
|
|
input: 'eg25-manager.service.in',
|
|
output: 'eg25-manager.service',
|
|
install_dir: systemdsystemdir,
|
|
configuration: serviceconf,
|
|
install: true
|
|
)
|