# Copyright (C) 2022 Vincent BENOIT # Release under the MIT license (see COPYING.MIT for the terms) FILESEXTRAPATHS:prepend := "${THISDIR}/files:" SRC_URI += "file://ip-forward.conf" FILES:{PN} += "${sysconfdir}/sysctl.d/ip-forward.conf" do_install:append() { install -d ${D}${sysconfdir}/sysctl.d/ install -m 0644 ${WORKDIR}/ip-forward.conf ${D}${sysconfdir}/sysctl.d/ }