Update to buildroot 2023.08.2, updated nwipe to v0.35, added ChromeOS and Microsoft Surface drivers, fibre channel drivers.

This commit is contained in:
PartialVolume
2023-11-08 19:10:58 +00:00
parent a8a8be2f23
commit 9e8d671b7c
1798 changed files with 36091 additions and 18209 deletions

View File

@@ -0,0 +1,12 @@
import docker
client = docker.from_env()
info = client.info()
images = client.images.list()
assert len(images) > 0
print('Version:', info['ServerVersion'])
print('Images:')
for i in images:
print(i.tags[0])