On Tue, Aug 28, 2018 at 3:23 AM, Alexander Kanavin <alex.kana...@gmail.com> wrote: > From: Alexander Kanavin <alexander.kana...@linux.intel.com> > > I believe the time has come to do this: openssl 1.0 upstream support stops at > the end > of 2019, and we do not want a situation where a supported YP release contains > an > unsupported version of a critical security component. > > Openssl 1.0 can still be utilized by depending on 'openssl10' recipe. > > Signed-off-by: Alexander Kanavin <alexander.kana...@linux.intel.com> > --- > > ... > > BBCLASSEXTEND = "native nativesdk" > +PACKAGE_PREPROCESS_FUNCS += "openssl_package_preprocess" > + > +# openssl 1.0 development files and executable binaries clash with openssl > 1.1 > +# files when installed into target rootfs. So we don't put them into > +# packages, but they continue to be provided via target sysroot for > +# cross-compilation on the host, if some software still depends on openssl > 1.0. > +openssl_package_preprocess () { > + for file in `find ${PKGD} -name *.h -o -name *.pc -o -name *.so`; do > + rm $file > + done > + rm ${PKGD}/usr/bin/openssl > + rm ${PKGD}/usr/bin/c_rehash > + rmdir ${PKGD}/usr/bin > + > +}
I haven't tried it, but does this mean it's no longer possible to build openssh with an OE based SDK? -- _______________________________________________ Openembedded-core mailing list Openembedded-core@lists.openembedded.org http://lists.openembedded.org/mailman/listinfo/openembedded-core