diff options
author | makefu <github@syntax-fehler.de> | 2018-09-13 16:17:39 +0200 |
---|---|---|
committer | makefu <github@syntax-fehler.de> | 2018-09-13 16:17:39 +0200 |
commit | b658de054d724064a3531de2d4a53a7a28cdc6ac (patch) | |
tree | 79d7481b6246065f5edeeb0e50288542a0603aa8 /makefu/1systems/hardware/tsp-disk.json | |
parent | 859f98583788a9324be0e8c52d36a6bb812273fe (diff) |
ma omo.r: split hardware config, use disko for tsp hardware
Diffstat (limited to 'makefu/1systems/hardware/tsp-disk.json')
-rw-r--r-- | makefu/1systems/hardware/tsp-disk.json | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/makefu/1systems/hardware/tsp-disk.json b/makefu/1systems/hardware/tsp-disk.json new file mode 100644 index 000000000..5a4bd26ab --- /dev/null +++ b/makefu/1systems/hardware/tsp-disk.json @@ -0,0 +1,23 @@ +{ + "type": "devices", + "content": { + "sda": { + "type": "table", + "format": "msdos", + "partitions": [ + { "type": "partition", + "part-type": "primary", + "start": "1M", + "end": "100%", + "bootable": true, + "content": { + "type": "filesystem", + "format": "ext4", + "mountpoint": "/" + } + } + ] + } + } +} + |