mirror of
https://github.com/cirosantilli/linux-kernel-module-cheat.git
synced 2026-01-23 18:25:57 +01:00
Still failing with:
Traceback (most recent call last):
File "util/cpt_upgrader.py", line 73, in <module>
from six.moves import configparser
ImportError: No module named six.moves
Also fix some issues noticed:
- userland/c/atomic was not ignoring arch specific examples
- ./build would not stop on the first error, now it does
- add libhdf5-dev as a dependency of gem5
6 lines
114 B
Docker
6 lines
114 B
Docker
# https://cirosantilli.com/linux-kernel-module-cheat#docker
|
|
FROM ubuntu:20.04
|
|
COPY setup /
|
|
RUN /setup -y
|
|
CMD bash
|