Skip to content

Commit

Permalink
Updating pythondata-misc-opentitan to 0.0.post10460
Browse files Browse the repository at this point in the history
Updated data to v0.0-10334-g01b2cace6 based on 01b2cac from https://github.com/lowRISC/opentitan.
> commit 01b2cac
> Author: Luís Marques <[email protected]>
> Date:   Thu Feb 10 21:48:11 2022 +0000
>
>     Update toolchain to release 20220210-1 with bitmanip support
>
>     This release updates the meson cross files to make the toolchains more
>     easily configurable. The tool versions for the bitmanip variant are:
>
>     - Binutils 2.35
>     - GCC: 10.2.0
>     - Clang/LLVM: 13.0.1
>     - GDB 11.1
>
>     - Binutils: `7c9dd840fbb6a1171a51feb08afb859288615137`
>       (riscv-binutils-2.35-rvb) with Pirmin's bitmanip 1.00+0.93 PR patch
>       (riscvarchive/riscv-binutils-gdb#267).
>     - GCC: `73055647d33c0b63a3125c372019d1dac0f8ac34` (RISC-V bitmanip fork,
>       branch riscv-gcc-10.2.0-rvb, commit 73055647d33 from 2021-07-09)
>     - Clang/LLVM: 13.0.1
>     - GDB 11.1
>
>     Signed-off-by: Luís Marques <[email protected]>
>

Updated using 0.0.post126 from https://github.com/litex-hub/litex-data-auto
  • Loading branch information
timvideos-robot committed Feb 21, 2022
1 parent efb8846 commit 3b397ff
Showing 1 changed file with 28 additions and 14 deletions.
42 changes: 28 additions & 14 deletions pythondata_misc_opentitan/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,34 +4,48 @@
src = "https://github.com/lowRISC/opentitan"

# Module version
version_str = "0.0.post10459"
version_tuple = (0, 0, 10459)
version_str = "0.0.post10460"
version_tuple = (0, 0, 10460)
try:
from packaging.version import Version as V
pversion = V("0.0.post10459")
pversion = V("0.0.post10460")
except ImportError:
pass

# Data version info
data_version_str = "0.0.post10333"
data_version_tuple = (0, 0, 10333)
data_version_str = "0.0.post10334"
data_version_tuple = (0, 0, 10334)
try:
from packaging.version import Version as V
pdata_version = V("0.0.post10333")
pdata_version = V("0.0.post10334")
except ImportError:
pass
data_git_hash = "3281bd3cf497853245a7d59678ae5ceeb4d411c7"
data_git_describe = "v0.0-10333-g3281bd3cf"
data_git_hash = "01b2cace65124bcbd9fc63acc44eb686c67ff1b3"
data_git_describe = "v0.0-10334-g01b2cace6"
data_git_msg = """\
commit 3281bd3cf497853245a7d59678ae5ceeb4d411c7
Author: Pirmin Vogel <vogelpi@lowrisc.org>
Date: Mon Feb 21 14:19:12 2022 +0100
commit 01b2cace65124bcbd9fc63acc44eb686c67ff1b3
Author: Luís Marques <luismarques@lowrisc.org>
Date: Thu Feb 10 21:48:11 2022 +0000
[aes] Allow de-asserting EDN request upon fatal alerts
Update toolchain to release 20220210-1 with bitmanip support
This fixes lowRISC/OpenTitan#10991.
This release updates the meson cross files to make the toolchains more
easily configurable. The tool versions for the bitmanip variant are:
Signed-off-by: Pirmin Vogel <[email protected]>
- Binutils 2.35
- GCC: 10.2.0
- Clang/LLVM: 13.0.1
- GDB 11.1
- Binutils: `7c9dd840fbb6a1171a51feb08afb859288615137`
(riscv-binutils-2.35-rvb) with Pirmin's bitmanip 1.00+0.93 PR patch
(https://github.com/riscv-collab/riscv-binutils-gdb/pull/267).
- GCC: `73055647d33c0b63a3125c372019d1dac0f8ac34` (RISC-V bitmanip fork,
branch riscv-gcc-10.2.0-rvb, commit 73055647d33 from 2021-07-09)
- Clang/LLVM: 13.0.1
- GDB 11.1
Signed-off-by: Luís Marques <[email protected]>
"""

Expand Down

0 comments on commit 3b397ff

Please sign in to comment.