added README, gitignore
This commit is contained in:
parent
0eb4bce8c2
commit
9c2742a258
2 changed files with 42 additions and 0 deletions
24
.gitignore
vendored
Normal file
24
.gitignore
vendored
Normal file
|
@ -0,0 +1,24 @@
|
||||||
|
# SPDX-FileCopyrightText: 2022 Tobias Schmidl
|
||||||
|
#
|
||||||
|
# SPDX-License-Identifier: CC0-1.0
|
||||||
|
|
||||||
|
### Vim
|
||||||
|
# Swap
|
||||||
|
[._]*.s[a-v][a-z]
|
||||||
|
!*.svg # comment out if you don't need vector files
|
||||||
|
[._]*.sw[a-p]
|
||||||
|
[._]s[a-rt-v][a-z]
|
||||||
|
[._]ss[a-gi-z]
|
||||||
|
[._]sw[a-p]
|
||||||
|
|
||||||
|
# Session
|
||||||
|
Session.vim
|
||||||
|
Sessionx.vim
|
||||||
|
|
||||||
|
# Temporary
|
||||||
|
.netrwhist
|
||||||
|
*~
|
||||||
|
# Auto-generated tag files
|
||||||
|
tags
|
||||||
|
# Persistent undo
|
||||||
|
[._]*.un~
|
18
README.md
Normal file
18
README.md
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
<!--
|
||||||
|
SPDX-FileCopyrightText: 2022 Tobias Schmidl
|
||||||
|
|
||||||
|
SPDX-License-Identifier: CC0-1.0
|
||||||
|
-->
|
||||||
|
|
||||||
|
# qemu-system-boot
|
||||||
|
|
||||||
|
shortcuts for qemu-system-xxx
|
||||||
|
|
||||||
|
Predefined environment variables:
|
||||||
|
|
||||||
|
| Name | Meaning | Predefined value |
|
||||||
|
| ------------------- | ----------------------------------------------- | ------------------------------ |
|
||||||
|
| `QEMU_PUBLIC_SHARE` | A shared folder that is mapped inside the image | `xdg-user-dir PUBLIC_SHARE` |
|
||||||
|
| `QEMU_MEMORY` | The amount of memory the image is assigned | `1G` |
|
||||||
|
| `QEMU_EFI` | The UEFI binary that is used for that image | `/usr/share/OVMF/OVMF_CODE.fd` |
|
||||||
|
|
Loading…
Reference in a new issue