version 0.21

This commit is contained in:
NIIBE Yutaka
2012-07-06 10:21:58 +09:00
parent ee4f3806c2
commit 965dace0a4
5 changed files with 21 additions and 13 deletions

View File

@@ -1,5 +1,8 @@
2012-07-06 Niibe Yutaka <gniibe@fsij.org>
* Version 0.21.
* src/usb_desc.c (gnukStringSerial): Updated.
* boards/FST_01/board.h (VAL_GPIOACRL): Change for SPI flash.
* tool/stlinkv2.py (stlinkv2.setup_gpio): Likewise.
(stlinkv2.spi_flash_init, stlinkv2.spi_flash_select)

5
NEWS
View File

@@ -1,10 +1,11 @@
Gnuk NEWS - User visible changes
* Major changes in Gnuk 1.0
* Major changes in Gnuk 0.21
Released 2012-0X-XX, by NIIBE Yutaka
Released 2012-07-06, by NIIBE Yutaka
** Test suite
A functinality test suite is added under test/ directory.
** New tool: stlinkv2.py
This tool is SWD flash ROM writer with ST-Link/V2.

20
README
View File

@@ -1,7 +1,7 @@
Gnuk - An Implementation of USB Cryptographic Token for GnuPG
Version 0.20
2012-06-19
Version 0.21
2012-07-06
Niibe Yutaka
Free Software Initiative of Japan
@@ -106,15 +106,15 @@ Ab: That's because gnome-keyring-daemon interferes GnuPG. Type:
"GPG Password Agent" and "SSH Key Agent".
Qc: Do you know a good SWD debugger to connect FST-01 or something?
Ac: STLink v2 is cheap one. See http://code.google.com/p/arm-utilities/
for a control program.
Ac: STLink v2 is cheap one. We have a tool/stlinkv2.py as flash ROM
writer.
Release notes
=============
This is "version 1.0 release candidate" of Gnuk. In this release, key
generation feature is added. While it is daily use, some features
This is another "version 1.0 release candidate" of Gnuk. In this
release, a test suite is added. While it is daily use, some features
(including key generation and firmware upgrade) are still considered
experimental.
@@ -138,7 +138,7 @@ Tested features are:
but you can remove all keys to import again).
* Key generation on device side
Original feature of Gnuk, tested (lightly):
Original feature of Gnuk, tested lightly:
* Upgrading with "EXTERNAL AUTHENTICATE" by reGNUal
@@ -554,11 +554,15 @@ This entry has been added into libccid 1.4.1 already ([r5425]).
Testing Gnuk
------------
Try following to see Gnuk runs:
Type following command to see Gnuk runs:
$ gpg --card-status
Besides, there is a functinality test under test/ directory. See
test/README.
Personalize the Token and import keys
-------------------------------------

View File

@@ -262,7 +262,7 @@ const uint8_t gnukStringSerial[] = {
USB_STRING_DESCRIPTOR_TYPE, /* bDescriptorType */
/* FSIJ-0.19 */
'F', 0, 'S', 0, 'I', 0, 'J', 0, '-', 0,
'0', 0, '.', 0, '2', 0, '0', 0, /* Version number of Gnuk */
'0', 0, '.', 0, '2', 0, '1', 0, /* Version number of Gnuk */
'-', 0,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,

View File

@@ -1,4 +1,4 @@
This is functionality test suite for Gnuk.
This is a functionality test suite for Gnuk.
You need python-nose, python-freshen as well as python-usb.
@@ -17,4 +17,4 @@ or
to run the test suite.
To skip tests for key generation, add an option "--tag ~keygen". To
stop running tests after the first error or failure, add "--stop option".
stop running tests after the first error or failure, add "--stop" option.