Merge "Debian: install pf-bb-config package in the ISO"

This commit is contained in:
Zuul 2022-05-30 16:11:49 +00:00 committed by Gerrit Code Review
commit 27e8171ab6
2 changed files with 19 additions and 1 deletions

View File

@ -0,0 +1,5 @@
usr/bin/pf_bb_config
usr/share/pf-bb-config/acc100/acc100_config_1vf_4g5g.cfg
usr/share/pf-bb-config/acc100/acc100_config_vf_5g.cfg
usr/share/pf-bb-config/fpga_5gnr/fpga_5gnr_config_vf.cfg
usr/share/pf-bb-config/README.md

View File

@ -1,6 +1,6 @@
#!/usr/bin/make -f
#
# Copyright (c) 2021 Wind River Systems, Inc.
# Copyright (c) 2022 Wind River Systems, Inc.
#
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. The ASF licenses this
@ -20,5 +20,18 @@
#export DH_VERBOSE = 1
DEBIAN_DESTDIR := $(CURDIR)/debian/tmp
%:
dh $@
override_dh_install:
install -d -m 755 ${DEBIAN_DESTDIR}/usr/bin
install -d -m 755 ${DEBIAN_DESTDIR}/usr/share/pf-bb-config/acc100
install -d -m 755 ${DEBIAN_DESTDIR}/usr/share/pf-bb-config/fpga_5gnr
install -p -D -m 700 pf_bb_config ${DEBIAN_DESTDIR}/usr/bin/pf_bb_config
install -p -D -m 600 acc100/acc100_config_1vf_4g5g.cfg ${DEBIAN_DESTDIR}/usr/share/pf-bb-config/acc100/acc100_config_1vf_4g5g.cfg
install -p -D -m 600 acc100/acc100_config_vf_5g.cfg ${DEBIAN_DESTDIR}/usr/share/pf-bb-config/acc100/acc100_config_vf_5g.cfg
install -p -D -m 600 fpga_5gnr/fpga_5gnr_config_vf.cfg ${DEBIAN_DESTDIR}/usr/share/pf-bb-config/fpga_5gnr/fpga_5gnr_config_vf.cfg
install -p -D -m 644 README.md ${DEBIAN_DESTDIR}/usr/share/pf-bb-config/README.md
dh_install