From 624d1c22b338485efd0c0acea5a0edf53be607f8 Mon Sep 17 00:00:00 2001 From: Khem Raj Date: Tue, 9 Oct 2018 13:52:18 -0700 Subject: [PATCH 1/3] Updating sources/openembedded-core * sources/openembedded-core 9a84114...4172459 (19): > selftest/runqemu: Handle SystemExit > qemurunner: Remove the signal handler before stopping qemu > strace: fix ptests > util-linux: Use update-alternatives for fsfreeze, nsenter > parted: use update-alternatives for partprobe > gcc: Remove unnecessary --with-mpfr and --with-mpc when cross compiling > rootfs_*: Also depend on do_package_qa > opkg-utils: Add support for pigz > libgcrypt: Add the LICENSES file to LIC_FILES_CHKSUM > glib-2.0: Include the complete license information for pcre > bzip2: Include the complete license information > curl: Include the complete license information > binutils: fix symlinks > x264: Disable asm on musl/x86 > ffmpeg: use bfd linker always for x86 target > ltp: recent glibc calls syscall directly > python3: add ca-certificates to python3-crypt RRECOMMENDS > libsoup: upgrade to 2.62.3 > libx11: fix patch headers Signed-off-by: Khem Raj --- sources/openembedded-core | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sources/openembedded-core b/sources/openembedded-core index 9a84114a2..417245923 160000 --- a/sources/openembedded-core +++ b/sources/openembedded-core @@ -1 +1 @@ -Subproject commit 9a84114a279000329c2878a35f197a09217cd1fc +Subproject commit 417245923c1c2c35a60d6db29cbe5a78548860d2 From 5507fb457331c787098c5e45d6beea4051ddb0ae Mon Sep 17 00:00:00 2001 From: Khem Raj Date: Tue, 9 Oct 2018 18:47:43 -0700 Subject: [PATCH 2/3] envsetup: Ensure to cd into correct directory before running git submodule cmds This makes it possible to run these top level commands from anywhere in workspace instead of just the top level as of now Signed-off-by: Khem Raj --- envsetup.sh | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/envsetup.sh b/envsetup.sh index 5f66d62d4..10c05eeb4 100644 --- a/envsetup.sh +++ b/envsetup.sh @@ -214,11 +214,17 @@ fi # if -e ${OE_ENV_FILE} # UPDATE_ALL() - Make sure everything is up to date ############################################################################### yoe_update_all() { - git submodule update + CWD=`pwd` + cd ${OE_BASE} + git pull && git submodule sync && git submodule update + cd $CWD } yoe_update_all_submodules_to_master() { + SAVEDPWD=$PWD + cd $OE_BASE git submodule foreach "git checkout master && git pull" + cd $SAVEDPWD } ############################################################################### @@ -234,9 +240,11 @@ yoe_clean() { # machine is first parameter ############################################################################### yoe_setup() { + SAVEDPWD=$PWD + cd $OE_BASE git submodule init git submodule update - + cd $SAVEDPWD } ############################################################################### From 8751b89697d5c38c46adc321b9d653114b8e8987 Mon Sep 17 00:00:00 2001 From: Khem Raj Date: Tue, 9 Oct 2018 18:49:33 -0700 Subject: [PATCH 3/3] Updating sources/meta-96boards * sources/meta-96boards 21e877c...26220ad (1): > Merge pull request #276 from mrchapp/master-kst-ping6 Signed-off-by: Khem Raj --- sources/meta-96boards | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sources/meta-96boards b/sources/meta-96boards index 21e877c66..26220ad5b 160000 --- a/sources/meta-96boards +++ b/sources/meta-96boards @@ -1 +1 @@ -Subproject commit 21e877c66bab6847ce87f46a21f24a9a3486bad7 +Subproject commit 26220ad5ba01a3d3be47225007b84bf6bd9fe9a4