qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/2] canokey: documentation fixes
@ 2023-06-12  8:36 Hongren (Zenithal) Zheng
  2023-06-12  8:42 ` [PATCH 1/2] docs/system/devices/canokey: fix recursive cloning Hongren (Zenithal) Zheng
  2023-06-12  8:44 ` [PATCH 2/2] docs/system/devices/canokey: update implementations and web console Hongren (Zenithal) Zheng
  0 siblings, 2 replies; 3+ messages in thread
From: Hongren (Zenithal) Zheng @ 2023-06-12  8:36 UTC (permalink / raw)
  To: Gerd Hoffmann, Canokeys.org; +Cc: qemu-devel, tlaurion

This patch series updates the documentation for
canokey in QEMU.

Kraxel, could you please pass these patches?
I still do not get my gpg key signed.
Hopefully I could meet some QEMU maintainers soon
and then I can send a PULL.

The following patch also needs to be passed.
https://lore.kernel.org/qemu-devel/ZE5z+2WbvVpTa82H@Sun/

Thanks,

Hongren (Zenithal) Zheng (2):
  docs/system/devices/canokey: fix recursive cloning
  docs/system/devices/canokey: update implementations and web console

 docs/system/devices/canokey.rst | 11 +++++++----
 1 file changed, 7 insertions(+), 4 deletions(-)

-- 
2.37.2



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

* [PATCH 1/2] docs/system/devices/canokey: fix recursive cloning
  2023-06-12  8:36 [PATCH 0/2] canokey: documentation fixes Hongren (Zenithal) Zheng
@ 2023-06-12  8:42 ` Hongren (Zenithal) Zheng
  2023-06-12  8:44 ` [PATCH 2/2] docs/system/devices/canokey: update implementations and web console Hongren (Zenithal) Zheng
  1 sibling, 0 replies; 3+ messages in thread
From: Hongren (Zenithal) Zheng @ 2023-06-12  8:42 UTC (permalink / raw)
  To: Gerd Hoffmann, Canokeys.org; +Cc: qemu-devel, tlaurion

canokey-qemu contains submodules so it needs
recursive cloning

Reported-By: tlaurion <insurgo@riseup.net>
Link: https://github.com/canokeys/canokey-qemu/issues/3
Signed-off-by: Hongren (Zenithal) Zheng <i@zenithal.me>
---
 docs/system/devices/canokey.rst | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/system/devices/canokey.rst b/docs/system/devices/canokey.rst
index cfa6186e48..5492e6792c 100644
--- a/docs/system/devices/canokey.rst
+++ b/docs/system/devices/canokey.rst
@@ -53,7 +53,7 @@ libcanokey-qemu is required to use CanoKey QEMU.
 
 .. code-block:: shell
 
-    git clone https://github.com/canokeys/canokey-qemu
+    git clone --recursive https://github.com/canokeys/canokey-qemu
     mkdir canokey-qemu/build
     pushd canokey-qemu/build
 
-- 
2.37.2



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

* [PATCH 2/2] docs/system/devices/canokey: update implementations and web console
  2023-06-12  8:36 [PATCH 0/2] canokey: documentation fixes Hongren (Zenithal) Zheng
  2023-06-12  8:42 ` [PATCH 1/2] docs/system/devices/canokey: fix recursive cloning Hongren (Zenithal) Zheng
@ 2023-06-12  8:44 ` Hongren (Zenithal) Zheng
  1 sibling, 0 replies; 3+ messages in thread
From: Hongren (Zenithal) Zheng @ 2023-06-12  8:44 UTC (permalink / raw)
  To: Gerd Hoffmann, Canokeys.org; +Cc: qemu-devel, tlaurion

An nRF52 implementation and a new web console was introduced.

The old web console is hosted in a different URL now.

Signed-off-by: Hongren (Zenithal) Zheng <i@zenithal.me>
---
 docs/system/devices/canokey.rst | 9 ++++++---
 1 file changed, 6 insertions(+), 3 deletions(-)

diff --git a/docs/system/devices/canokey.rst b/docs/system/devices/canokey.rst
index 5492e6792c..9b8f404fe8 100644
--- a/docs/system/devices/canokey.rst
+++ b/docs/system/devices/canokey.rst
@@ -18,6 +18,7 @@ including both hardware implementions and virtual cards:
 
 * CanoKey STM32 [4]_
 * CanoKey Pigeon [5]_
+* CanoKey nRF52 [6]_
 * (virt-card) CanoKey USB/IP
 * (virt-card) CanoKey FunctionFS
 
@@ -100,7 +101,7 @@ and find CanoKey QEMU there:
     $ lsusb
     Bus 001 Device 002: ID 20a0:42d4 Clay Logic CanoKey QEMU
 
-You may setup the key as guided in [6]_. The console for the key is at [7]_.
+You may setup the key as guided in [7]_. The console for the key is at [8]_ or [9]_.
 
 Debugging
 =========
@@ -154,5 +155,7 @@ References
 .. [3] `<https://github.com/canokeys/canokey-core>`_
 .. [4] `<https://github.com/canokeys/canokey-stm32>`_
 .. [5] `<https://github.com/canokeys/canokey-pigeon>`_
-.. [6] `<https://docs.canokeys.org/>`_
-.. [7] `<https://console.canokeys.org/>`_
+.. [6] `<https://github.com/canokeys/canokey-nrf52>`_
+.. [7] `<https://docs.canokeys.org/>`_
+.. [8] `<https://console.canokeys.org/>`_
+.. [9] `<https://console-legacy.canokeys.org/>`_
-- 
2.37.2



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

end of thread, other threads:[~2023-06-12  8:45 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-06-12  8:36 [PATCH 0/2] canokey: documentation fixes Hongren (Zenithal) Zheng
2023-06-12  8:42 ` [PATCH 1/2] docs/system/devices/canokey: fix recursive cloning Hongren (Zenithal) Zheng
2023-06-12  8:44 ` [PATCH 2/2] docs/system/devices/canokey: update implementations and web console Hongren (Zenithal) Zheng

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).