blob: 672c10d48cdf541fc702e480a6b9bded5955c92d [file] [log] [blame]
Asmitha Karunanithibe2bdec2021-05-13 02:54:29 -05001hyp_default_busname = 'xyz.openbmc_project.Network.Hypervisor'
2
3configure_file(
4 input: 'xyz.openbmc_project.Network.Hypervisor.service.in',
5 output: 'xyz.openbmc_project.Network.Hypervisor.service',
6 configuration: {
7 'SYSTEMD_TARGET': 'multi-user.target',
8 'HYP_DEFAULT_NETWORK_BUSNAME': hyp_default_busname,
9 },
10 install: true,
11 install_dir: dependency('systemd').get_variable(
12 pkgconfig: 'systemdsystemunitdir'))
13
14executable(
15 'hyp-network-manager',
16 'hyp_network_manager_main.cpp',
17 'hyp_network_manager.cpp',
18 implicit_include_directories: false,
19 dependencies: networkd_dep,
20 install: true,
21 install_dir: get_option('bindir'))
22