mirror of
git://git.yoctoproject.org/meta-virtualization.git
synced 2025-07-19 20:59:41 +02:00

The v2.11 version fixed a bug as follow. Error info: ovs|00002|db_ctl_base|ERR|external-ids:hostname=: argument does not end in "=" followed by a value. The result of ptest between v2.11 and v2.10.1 is similar. v2.11: ERROR: 2765 tests were run, 317 failed (1 expected failure). 85 tests were skipped. v2.10.1: ERROR: 2662 tests were run, 311 failed (1 expected failure). 85 tests were skipped. I checked the detailed result. The failed tests were mostly related to python2 as the image only use python3. Signed-off-by: Hongzhi.Song <hongzhi.song@windriver.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
30 lines
1.2 KiB
Diff
30 lines
1.2 KiB
Diff
From 9b7fb1346702d59af67435487254ef35940bc16a Mon Sep 17 00:00:00 2001
|
|
From: "Hongzhi.Song" <hongzhi.song@windriver.com>
|
|
Date: Wed, 23 Jan 2019 03:41:30 -0500
|
|
Subject: [PATCH] datapatch/linux: Specify install path for kernel module
|
|
|
|
Signed-off-by: Amy Fong <amy.fong@windriver.com>
|
|
Signed-off-by: Hongzhi.Song <hongzhi.song@windriver.com>
|
|
---
|
|
datapath/linux/Makefile.main.in | 4 ++--
|
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/datapath/linux/Makefile.main.in b/datapath/linux/Makefile.main.in
|
|
index 328bbfb..6dcc8d0 100644
|
|
--- a/datapath/linux/Makefile.main.in
|
|
+++ b/datapath/linux/Makefile.main.in
|
|
@@ -71,8 +71,8 @@ default:
|
|
$(MAKE) -C $(KSRC) $(if @KARCH@,ARCH=@KARCH@) M=$(builddir) modules
|
|
|
|
modules_install:
|
|
- $(MAKE) -C $(KSRC) $(if @KARCH@,ARCH=@KARCH@) M=$(builddir) modules_install
|
|
- /sbin/depmod `sed -n 's/#define UTS_RELEASE "\([^"]*\)"/\1/p' $(KSRC)/include/generated/utsrelease.h`
|
|
+ $(MAKE) -C $(KSRC) $(if @KARCH@,ARCH=@KARCH@) M=$(builddir) modules_install INSTALL_MOD_PATH=${INSTALL_MOD_PATH}
|
|
+ #/sbin/depmod `sed -n 's/#define UTS_RELEASE "\([^"]*\)"/\1/p' $(KSRC)/include/generated/utsrelease.h`
|
|
endif
|
|
|
|
# Much of the kernel build system in this file is derived from Intel's
|
|
--
|
|
2.8.1
|
|
|