Message ID | 20210428225650.372450-1-hj.tedd.an@gmail.com (mailing list archive) |
---|---|
State | Accepted |
Delegated to: | Luiz Von Dentz |
Headers | show |
Series | [BlueZ] Build: Add missing ELL headers and sources | expand |
This is automated email and please do not reply to this email! Dear submitter, Thank you for submitting the patches to the linux bluetooth mailing list. This is a CI test results with your patch series: PW Link:https://patchwork.kernel.org/project/bluetooth/list/?series=474765 ---Test result--- Test Summary: CheckPatch PASS 0.31 seconds GitLint PASS 0.13 seconds Prep - Setup ELL PASS 48.10 seconds Build - Prep PASS 0.13 seconds Build - Configure PASS 8.39 seconds Build - Make PASS 207.27 seconds Make Check PASS 13.27 seconds Make Dist PASS 12.03 seconds Make Dist - Configure PASS 5.18 seconds Make Dist - Make PASS 84.09 seconds Build w/ext ELL - Configure PASS 8.44 seconds Build w/ext ELL - Make PASS 194.55 seconds Details ############################## Test: CheckPatch - PASS Desc: Run checkpatch.pl script with rule in .checkpatch.conf ############################## Test: GitLint - PASS Desc: Run gitlint with rule in .gitlint ############################## Test: Prep - Setup ELL - PASS Desc: Clone, build, and install ELL ############################## Test: Build - Prep - PASS Desc: Prepare environment for build ############################## Test: Build - Configure - PASS Desc: Configure the BlueZ source tree ############################## Test: Build - Make - PASS Desc: Build the BlueZ source tree ############################## Test: Make Check - PASS Desc: Run 'make check' ############################## Test: Make Dist - PASS Desc: Run 'make dist' and build the distribution tarball ############################## Test: Make Dist - Configure - PASS Desc: Configure the source from distribution tarball ############################## Test: Make Dist - Make - PASS Desc: Build the source from distribution tarball ############################## Test: Build w/ext ELL - Configure - PASS Desc: Configure BlueZ source with '--enable-external-ell' configuration ############################## Test: Build w/ext ELL - Make - PASS Desc: Build BlueZ source with '--enable-external-ell' configuration --- Regards, Linux Bluetooth
Hi Tedd, On Wed, Apr 28, 2021 at 4:44 PM <bluez.test.bot@gmail.com> wrote: > > This is automated email and please do not reply to this email! > > Dear submitter, > > Thank you for submitting the patches to the linux bluetooth mailing list. > This is a CI test results with your patch series: > PW Link:https://patchwork.kernel.org/project/bluetooth/list/?series=474765 > > ---Test result--- > > Test Summary: > CheckPatch PASS 0.31 seconds > GitLint PASS 0.13 seconds > Prep - Setup ELL PASS 48.10 seconds > Build - Prep PASS 0.13 seconds > Build - Configure PASS 8.39 seconds > Build - Make PASS 207.27 seconds > Make Check PASS 13.27 seconds > Make Dist PASS 12.03 seconds > Make Dist - Configure PASS 5.18 seconds > Make Dist - Make PASS 84.09 seconds > Build w/ext ELL - Configure PASS 8.44 seconds > Build w/ext ELL - Make PASS 194.55 seconds > > Details > ############################## > Test: CheckPatch - PASS > Desc: Run checkpatch.pl script with rule in .checkpatch.conf > > ############################## > Test: GitLint - PASS > Desc: Run gitlint with rule in .gitlint > > ############################## > Test: Prep - Setup ELL - PASS > Desc: Clone, build, and install ELL > > ############################## > Test: Build - Prep - PASS > Desc: Prepare environment for build > > ############################## > Test: Build - Configure - PASS > Desc: Configure the BlueZ source tree > > ############################## > Test: Build - Make - PASS > Desc: Build the BlueZ source tree > > ############################## > Test: Make Check - PASS > Desc: Run 'make check' > > ############################## > Test: Make Dist - PASS > Desc: Run 'make dist' and build the distribution tarball > > ############################## > Test: Make Dist - Configure - PASS > Desc: Configure the source from distribution tarball > > ############################## > Test: Make Dist - Make - PASS > Desc: Build the source from distribution tarball > > ############################## > Test: Build w/ext ELL - Configure - PASS > Desc: Configure BlueZ source with '--enable-external-ell' configuration > > ############################## > Test: Build w/ext ELL - Make - PASS > Desc: Build BlueZ source with '--enable-external-ell' configuration Applied, thanks.
diff --git a/Makefile.am b/Makefile.am index f98243f72..94f30a435 100644 --- a/Makefile.am +++ b/Makefile.am @@ -140,7 +140,12 @@ ell_headers = ell/util.h \ ell/uuid.h \ ell/useful.h \ ell/main-private.h \ - ell/tester.h + ell/tester.h \ + ell/tls.h \ + ell/tls-private.h \ + ell/ecc.h \ + ell/ecc-private.h \ + ell/ecdh.h ell_sources = ell/private.h ell/missing.h \ ell/util.c \ @@ -178,7 +183,14 @@ ell_sources = ell/private.h ell/missing.h \ ell/siphash-private.h \ ell/siphash.c \ ell/uuid.c \ - ell/tester.c + ell/tester.c \ + ell/tls.c \ + ell/tls-extensions.c \ + ell/tls-suites.c \ + ell/tls-record.c \ + ell/ecc.c \ + ell/ecc-external.c \ + ell/ecdh.c ell_shared = ell/useful.h
From: Tedd Ho-Jeong An <tedd.an@intel.com> The recent change in ELL included the header file tls.h which didn't included in the BlueZ. This patch adds a series of missing ELL headers and sources to align with the change in ELL. --- Makefile.am | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-)