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

For pf-bb-config it corrects the deployment in the iso.

Test Plan:
PASS  build Debian ISO
PASS  install AIO-SX Debian ISO
PASS  check presence of package pf-bb-config
PASS  check that the content of package is installed

Story: 2009965
Task: 45478

Signed-off-by: Andre Fernando Zanella Kantek <AndreFernandoZanella.Kantek@windriver.com>
Change-Id: I02b5bbf7c0cf9195d71beeff34f724b566f0864f
This commit is contained in:
Andre Fernando Zanella Kantek 2022-05-18 15:21:35 -03:00
parent fd1d2a5682
commit 4af013e038
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