[buildbot] phase1: kmodprepare: add apk compat

LEDE Commits lede-commits at lists.infradead.org
Tue Sep 10 12:10:48 PDT 2024


ynezz pushed a commit to buildbot.git, branch main:
https://git.openwrt.org/b8c8540edc233b3f58dc3fef8a5fa31016d5124e

commit b8c8540edc233b3f58dc3fef8a5fa31016d5124e
Author: Petr Štetiar <ynezz at true.cz>
AuthorDate: Thu Jun 13 13:52:17 2024 +0000

    phase1: kmodprepare: add apk compat
    
    Ansuel reported, that with `USE_APK=y` there are no kmods available in
    the build artifacts, so lets fix it by extending the rsync's include
    pattern with the `apk` suffix to make it future proof.
    
    Reported-by: Christian Marangi <ansuelsmth at gmail.com>
    Signed-off-by: Petr Štetiar <ynezz at true.cz>
---
 phase1/master.cfg | 1 +
 1 file changed, 1 insertion(+)

diff --git a/phase1/master.cfg b/phase1/master.cfg
index 4f76766..41968d6 100644
--- a/phase1/master.cfg
+++ b/phase1/master.cfg
@@ -1307,6 +1307,7 @@ def prepareFactory(target):
             command=[
                 "rsync",
                 "--include=/kmod-*.ipk",
+                "--include=/kmod-*.apk",
                 "--exclude=*",
                 "-va",
                 Interpolate(




More information about the lede-commits mailing list