Linux bluetooth development
 help / color / mirror / Atom feed
* [PATCH BlueZ 1/2] test-runner: Change qemu output
@ 2020-11-17 19:06 Luiz Augusto von Dentz
  2020-11-17 19:06 ` [PATCH BlueZ 2/2] test-runner: Use multidevs=remap when mounting rootfs Luiz Augusto von Dentz
  2020-11-17 19:25 ` [BlueZ,1/2] test-runner: Change qemu output bluez.test.bot
  0 siblings, 2 replies; 4+ messages in thread
From: Luiz Augusto von Dentz @ 2020-11-17 19:06 UTC (permalink / raw)
  To: linux-bluetooth

From: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>

This changes the serial device to include mux=on which enables the
output of early kernel logs.
---
 tools/test-runner.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/tools/test-runner.c b/tools/test-runner.c
index a53b468f4..0c5daf2d9 100644
--- a/tools/test-runner.c
+++ b/tools/test-runner.c
@@ -195,8 +195,8 @@ static char *const qemu_argv[] = {
 	"-no-reboot",
 	"-fsdev", "local,id=fsdev-root,path=/,readonly,security_model=none",
 	"-device", "virtio-9p-pci,fsdev=fsdev-root,mount_tag=/dev/root",
-	"-chardev", "stdio,id=chardev-serial0,signal=off",
-	"-device", "pci-serial,chardev=chardev-serial0",
+	"-chardev", "stdio,id=con,mux=on",
+	"-serial", "chardev:con",
 	NULL
 };
 
-- 
2.26.2


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [PATCH BlueZ 2/2] test-runner: Use multidevs=remap when mounting rootfs
  2020-11-17 19:06 [PATCH BlueZ 1/2] test-runner: Change qemu output Luiz Augusto von Dentz
@ 2020-11-17 19:06 ` Luiz Augusto von Dentz
  2020-11-17 19:25 ` [BlueZ,1/2] test-runner: Change qemu output bluez.test.bot
  1 sibling, 0 replies; 4+ messages in thread
From: Luiz Augusto von Dentz @ 2020-11-17 19:06 UTC (permalink / raw)
  To: linux-bluetooth

From: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>

This avoid inode collisions when the host has multiple fs to be mapped
to the rootfs on the guest.
---
 tools/test-runner.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/tools/test-runner.c b/tools/test-runner.c
index 0c5daf2d9..ee077ebcf 100644
--- a/tools/test-runner.c
+++ b/tools/test-runner.c
@@ -193,7 +193,8 @@ static char *const qemu_argv[] = {
 	"-no-acpi",
 	"-no-hpet",
 	"-no-reboot",
-	"-fsdev", "local,id=fsdev-root,path=/,readonly,security_model=none",
+	"-fsdev", "local,id=fsdev-root,path=/,readonly,security_model=none,"
+	"multidevs=remap",
 	"-device", "virtio-9p-pci,fsdev=fsdev-root,mount_tag=/dev/root",
 	"-chardev", "stdio,id=con,mux=on",
 	"-serial", "chardev:con",
-- 
2.26.2


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* RE: [BlueZ,1/2] test-runner: Change qemu output
  2020-11-17 19:06 [PATCH BlueZ 1/2] test-runner: Change qemu output Luiz Augusto von Dentz
  2020-11-17 19:06 ` [PATCH BlueZ 2/2] test-runner: Use multidevs=remap when mounting rootfs Luiz Augusto von Dentz
@ 2020-11-17 19:25 ` bluez.test.bot
  2020-11-17 20:33   ` Luiz Augusto von Dentz
  1 sibling, 1 reply; 4+ messages in thread
From: bluez.test.bot @ 2020-11-17 19:25 UTC (permalink / raw)
  To: linux-bluetooth, luiz.dentz

[-- Attachment #1: Type: text/plain, Size: 557 bytes --]

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=386271

---Test result---

##############################
Test: CheckPatch - PASS

##############################
Test: CheckGitLint - PASS

##############################
Test: CheckBuild - PASS

##############################
Test: MakeCheck - PASS



---
Regards,
Linux Bluetooth


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [BlueZ,1/2] test-runner: Change qemu output
  2020-11-17 19:25 ` [BlueZ,1/2] test-runner: Change qemu output bluez.test.bot
@ 2020-11-17 20:33   ` Luiz Augusto von Dentz
  0 siblings, 0 replies; 4+ messages in thread
From: Luiz Augusto von Dentz @ 2020-11-17 20:33 UTC (permalink / raw)
  To: linux-bluetooth@vger.kernel.org

Hi,

On Tue, Nov 17, 2020 at 11:25 AM <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=386271
>
> ---Test result---
>
> ##############################
> Test: CheckPatch - PASS
>
> ##############################
> Test: CheckGitLint - PASS
>
> ##############################
> Test: CheckBuild - PASS
>
> ##############################
> Test: MakeCheck - PASS
>
>
>
> ---
> Regards,
> Linux Bluetooth

Pushed.

-- 
Luiz Augusto von Dentz

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2020-11-17 20:34 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-11-17 19:06 [PATCH BlueZ 1/2] test-runner: Change qemu output Luiz Augusto von Dentz
2020-11-17 19:06 ` [PATCH BlueZ 2/2] test-runner: Use multidevs=remap when mounting rootfs Luiz Augusto von Dentz
2020-11-17 19:25 ` [BlueZ,1/2] test-runner: Change qemu output bluez.test.bot
2020-11-17 20:33   ` Luiz Augusto von Dentz

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox