On Mon, Jul 06, 2020 at 05:24:41PM +0200, Bruno Thomsen wrote: > Added install_copy fixes errors like this: > > Incompatible ownership or permissions for > '/usr/lib/modules/5.6.13-gb44726ddbb7c': > kernel-modules: 0.0 0755 (implicit from > /usr/lib/modules/5.6.13-gb44726ddbb7c/kernel/net/ipv6/ip6_udp_tunnel.ko) > kernel-modules: 0.0 0775
Hmmm, you're running ptxdist with a 0002 umask, right?[1] Also, the fix is not clear to me. The error is for /usr/lib/modules/5.6.13-gb44726ddbb7c but you're creating /usr/lib/modules explicitly. How does that fix the problem? Michael [1] https://www.ptxdist.org/doc/daily_work_section.html#umask-pitfall > > Modified install_glob fixes this error: > > Collected errors: > * check_data_file_clashes: Package usr-rootfs wants to install file > ../platform-x/build-target/image-root-tgz/lib > But that path is currently a directory > * opkg_solver_install: Cannot install package usr-rootfs. > > Signed-off-by: Bruno Thomsen <[email protected]> > --- > rules/kernel.make | 5 +++-- > 1 file changed, 3 insertions(+), 2 deletions(-) > > diff --git a/rules/kernel.make b/rules/kernel.make > index 0d9710828..66222f386 100644 > --- a/rules/kernel.make > +++ b/rules/kernel.make > @@ -308,8 +308,9 @@ ifdef PTXCONF_KERNEL_MODULES_INSTALL > @$(call install_fixup, kernel-modules, AUTHOR,"Robert Schwebel > <[email protected]>") > @$(call install_fixup, kernel-modules, DESCRIPTION,missing) > > - @$(call install_glob, kernel-modules, 0, 0, -, /lib/modules, *.ko,, k) > - @$(call install_glob, kernel-modules, 0, 0, -, /lib/modules,, *.ko > */build */source, n) > + @$(call install_copy, kernel-modules, 0, 0, 755, /usr/lib/modules) > + @$(call install_glob, kernel-modules, 0, 0, /lib/modules, > /usr/lib/modules, *.ko,, k) > + @$(call install_glob, kernel-modules, 0, 0, /lib/modules, > /usr/lib/modules,, *.ko */build */source, n) > > @$(call install_finish, kernel-modules) > endif > > base-commit: 1ec4ca50586575426ed9732c8e335b05df0b4f6a > -- > 2.26.2 > > > _______________________________________________ > ptxdist mailing list > [email protected] > To unsubscribe, send a mail with subject "unsubscribe" to > [email protected] > -- Pengutronix e.K. | | Steuerwalder Str. 21 | http://www.pengutronix.de/ | 31137 Hildesheim, Germany | Phone: +49-5121-206917-0 | Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 | _______________________________________________ ptxdist mailing list [email protected] To unsubscribe, send a mail with subject "unsubscribe" to [email protected]
