Compare commits
2 commits
d74f79c630
...
9d4af4ea6d
Author | SHA1 | Date | |
---|---|---|---|
9d4af4ea6d | |||
244aa5f108 |
11 changed files with 406 additions and 14 deletions
123
mkosi/Readme.md
123
mkosi/Readme.md
|
@ -18,12 +18,39 @@
|
||||||
```
|
```
|
||||||
---
|
---
|
||||||
```
|
```
|
||||||
|
mkosi-cli
|
||||||
|
```
|
||||||
|
```
|
||||||
|
summary
|
||||||
|
build
|
||||||
|
shell
|
||||||
|
boot
|
||||||
|
qemu
|
||||||
|
ssh
|
||||||
|
clean
|
||||||
|
serve
|
||||||
|
bump
|
||||||
|
genkey
|
||||||
|
documentation
|
||||||
|
- -force,-f
|
||||||
|
- -directory=,-C
|
||||||
|
- -debug=
|
||||||
|
- -debug-shell=
|
||||||
|
- -version
|
||||||
|
- -help,-h
|
||||||
|
- -genkey-common-name=
|
||||||
|
- -genkey-valid-days=
|
||||||
|
- -auto-bump=,-B
|
||||||
|
- -doc-format
|
||||||
|
```
|
||||||
|
```
|
||||||
mkosi.conf
|
mkosi.conf
|
||||||
```
|
```
|
||||||
```ini
|
```ini
|
||||||
[Match]
|
[Match]
|
||||||
Distribution=
|
Distribution=
|
||||||
Release=
|
Release=
|
||||||
|
Architecture=
|
||||||
PathExists=
|
PathExists=
|
||||||
ImageId=
|
ImageId=
|
||||||
ImageVersion=
|
ImageVersion=
|
||||||
|
@ -31,12 +58,15 @@ Bootable=
|
||||||
Format=
|
Format=
|
||||||
SystemdVersion=
|
SystemdVersion=
|
||||||
|
|
||||||
|
[Config]
|
||||||
|
Include=
|
||||||
|
|
||||||
[Preset]
|
[Preset]
|
||||||
Preset=
|
Preset=
|
||||||
Dependencies=
|
Dependencies=
|
||||||
|
|
||||||
[Distribution]
|
[Distribution]
|
||||||
Distribution=fedora|debian|ubuntu|arch|opensuse|mageia|centos|openmandriva|rocky|alma
|
Distribution=fedora|debian|ubuntu|arch|opensuse|mageia|centos|rhel-ubi|openmandriva|rocky|alma|custom
|
||||||
Release=
|
Release=
|
||||||
Architecture=alpha|arc|arm|arm64|ia64|loongarch64|mips64-le|mips-le|parisc|ppc|ppc64|ppc64-le|riscv32|riscv64|s390|s390x|tilegx|x86|x86-64
|
Architecture=alpha|arc|arm|arm64|ia64|loongarch64|mips64-le|mips-le|parisc|ppc|ppc64|ppc64-le|riscv32|riscv64|s390|s390x|tilegx|x86|x86-64
|
||||||
Mirror=
|
Mirror=
|
||||||
|
@ -50,14 +80,14 @@ Format=directory|tar|cpio|disk|uki|none
|
||||||
ManifestFormat=json|changelog
|
ManifestFormat=json|changelog
|
||||||
Output=
|
Output=
|
||||||
CompressOutput=yes|no|xz|zstd
|
CompressOutput=yes|no|xz|zstd
|
||||||
OutputDirectory=mkosi.output/
|
OutputDirectory=mkosi.output
|
||||||
WorkspaceDirectory=mkosi.workspace/
|
WorkspaceDirectory=mkosi.workspace
|
||||||
CacheDirectory=mkosi.cache/
|
CacheDirectory=mkosi.cache
|
||||||
BuildDirectory=mkosi.builddir/
|
BuildDirectory=mkosi.builddir
|
||||||
ImageVersion=
|
ImageVersion=
|
||||||
ImageId=
|
ImageId=
|
||||||
SplitArtifacts=
|
SplitArtifacts=
|
||||||
RepartDirectories=mkosi.repart/
|
RepartDirectories=mkosi.repart
|
||||||
SectorSize=
|
SectorSize=
|
||||||
Overlay=
|
Overlay=
|
||||||
UseSubvolumes=auto|yes|no
|
UseSubvolumes=auto|yes|no
|
||||||
|
@ -69,9 +99,9 @@ Packages=
|
||||||
BuildPackages=
|
BuildPackages=
|
||||||
WithDocs=
|
WithDocs=
|
||||||
BaseTrees=
|
BaseTrees=
|
||||||
SkeletonTrees=mkosi.skeleton/
|
SkeletonTrees=mkosi.skeleton
|
||||||
PackageManagerTrees=
|
PackageManagerTrees=
|
||||||
ExtraTrees=mkosi.extra/|mkosi.extra.tar
|
ExtraTrees=mkosi.extra|mkosi.extra.tar
|
||||||
RemovePackages=
|
RemovePackages=
|
||||||
RemoveFiles=
|
RemoveFiles=
|
||||||
CleanPackageMetadata=yes|no|auto
|
CleanPackageMetadata=yes|no|auto
|
||||||
|
@ -99,7 +129,7 @@ Keymap=
|
||||||
Timezone=
|
Timezone=
|
||||||
Hostname=
|
Hostname=
|
||||||
RootShell=
|
RootShell=
|
||||||
RootPassword= (mkosi.rootpw (hashed:))
|
RootPassword=mkosi.rootpw (hashed:...)
|
||||||
Autologin=yes|no
|
Autologin=yes|no
|
||||||
MakeInitrd=
|
MakeInitrd=
|
||||||
Ssh=
|
Ssh=
|
||||||
|
@ -119,7 +149,7 @@ Key=
|
||||||
|
|
||||||
[Host]
|
[Host]
|
||||||
Incremental=
|
Incremental=
|
||||||
NSpawnSettings= (mkosi.nspawn)
|
NSpawnSettings=mkosi.nspawn
|
||||||
ExtraSearchPaths=
|
ExtraSearchPaths=
|
||||||
QemuGui=yes|no
|
QemuGui=yes|no
|
||||||
QemuSmp=2
|
QemuSmp=2
|
||||||
|
@ -135,17 +165,82 @@ Ephemeral=
|
||||||
Credentials=key=value key2=value2
|
Credentials=key=value key2=value2
|
||||||
KernelCommandLineExtra=
|
KernelCommandLineExtra=
|
||||||
Acl=yes|no
|
Acl=yes|no
|
||||||
ToolsTree= (mkosi.tools/)
|
ToolsTree=mkosi.tools
|
||||||
ToolsTreeDistribution=
|
ToolsTreeDistribution=
|
||||||
ToolsTreeRelease=
|
ToolsTreeRelease=
|
||||||
ToolsTreePackages=
|
ToolsTreePackages=
|
||||||
RuntimeTrees=
|
RuntimeTrees=
|
||||||
|
RuntimeSize=
|
||||||
```
|
```
|
||||||
---
|
---
|
||||||
```
|
```
|
||||||
mkosi.nspawn
|
mkosi.nspawn
|
||||||
```
|
```
|
||||||
```
|
```ini
|
||||||
|
[Exec]
|
||||||
|
Boot=off|on
|
||||||
|
Ephemeral=
|
||||||
|
ProcessTwo=
|
||||||
|
Parameters=
|
||||||
|
Enviroment=
|
||||||
|
User=
|
||||||
|
WorkingDirectory=
|
||||||
|
PivotRoot=
|
||||||
|
*Capability=
|
||||||
|
*DropCapability=
|
||||||
|
*AmbientCapability=
|
||||||
|
NoNewPrivileges=
|
||||||
|
KillSignal=
|
||||||
|
Personality=
|
||||||
|
*MachineID=
|
||||||
|
*PrivateUsers=
|
||||||
|
NotifyReady=
|
||||||
|
SystemCallFilter=
|
||||||
|
LimitCPU=
|
||||||
|
LimitFSIZE=
|
||||||
|
LimitDATA=
|
||||||
|
LimitSTACK=
|
||||||
|
LimitCORE=
|
||||||
|
LimitRSS=
|
||||||
|
LimitNOFILE=
|
||||||
|
LimitAS=
|
||||||
|
LimitNPROC=
|
||||||
|
LimitMEMLOCK=
|
||||||
|
LimitLOCKS=
|
||||||
|
LimitSIGPENDING=
|
||||||
|
LimitMSGQUEUE=
|
||||||
|
LimitNICE=
|
||||||
|
LimitRTPRIO=
|
||||||
|
LimitRTTIME=
|
||||||
|
OOMScoreAdjust=
|
||||||
|
CpuAffinity=
|
||||||
|
Hostname=
|
||||||
|
ResolvConf=
|
||||||
|
Timezone=
|
||||||
|
Linkjournal=
|
||||||
|
SuppressSync=
|
||||||
|
|
||||||
```
|
[Files]
|
||||||
---
|
ReadOnly=
|
||||||
|
Volatile=
|
||||||
|
*Bind=
|
||||||
|
*BindReadOnly=
|
||||||
|
*BindUser=
|
||||||
|
*TemporaryFileSystem=
|
||||||
|
*Inaccessible=
|
||||||
|
*Overlay=
|
||||||
|
*OverlayReadOnly=
|
||||||
|
*PrivateUsersOwnership=
|
||||||
|
|
||||||
|
[Network]
|
||||||
|
Private=
|
||||||
|
*VirtualEthernet=
|
||||||
|
*VirtualEthernetExtra=
|
||||||
|
*Interface=
|
||||||
|
*MACVLAN=
|
||||||
|
*IPVLAN=
|
||||||
|
*Bridge=
|
||||||
|
*Zone=
|
||||||
|
*Port=
|
||||||
|
|
||||||
|
```
|
9
systemd/automount/example.automount
Normal file
9
systemd/automount/example.automount
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
[Unit]
|
||||||
|
|
||||||
|
[Automount]
|
||||||
|
Where=
|
||||||
|
ExtraOptions=
|
||||||
|
DirectoryMode=
|
||||||
|
TimeoutIdleSec=
|
||||||
|
|
||||||
|
[Install]
|
15
systemd/mounts/example.mount
Normal file
15
systemd/mounts/example.mount
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
[Unit]
|
||||||
|
|
||||||
|
[Mount]
|
||||||
|
What=
|
||||||
|
Where=
|
||||||
|
Type=
|
||||||
|
Options=
|
||||||
|
SloppyOptions=
|
||||||
|
LazyUnmount=
|
||||||
|
ReadWriteOnly=
|
||||||
|
ForceUnmount=
|
||||||
|
DirectoryMode=
|
||||||
|
TimeoutSec=
|
||||||
|
|
||||||
|
[Install]
|
15
systemd/paths/example.path
Normal file
15
systemd/paths/example.path
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
[Unit]
|
||||||
|
|
||||||
|
[Path]
|
||||||
|
PathExists=
|
||||||
|
PathExistsGlob=
|
||||||
|
PathChanged=
|
||||||
|
PathModified=
|
||||||
|
DirectoryNotEmpty=
|
||||||
|
Unit=
|
||||||
|
MakeDirectory=
|
||||||
|
DirectoryMode=
|
||||||
|
TriggerLimitIntervalSec=
|
||||||
|
TriggerLimitBurst=
|
||||||
|
|
||||||
|
[Install]
|
38
systemd/services/example.service
Normal file
38
systemd/services/example.service
Normal file
|
@ -0,0 +1,38 @@
|
||||||
|
[Unit]
|
||||||
|
|
||||||
|
[Service]
|
||||||
|
Type=simple|*exec*|forking|oneshot|dbus|notify|notify-reload|idle
|
||||||
|
ExitType=main|cgroup
|
||||||
|
RemainAfterExit=no
|
||||||
|
GuessMainPID=
|
||||||
|
PIDFile=
|
||||||
|
BusName=
|
||||||
|
ExecStart=
|
||||||
|
ExecStartPre=
|
||||||
|
ExecStartPost=
|
||||||
|
ExecCondition=
|
||||||
|
ExecReload=
|
||||||
|
ExecStop=
|
||||||
|
ExecStopPost=
|
||||||
|
RestartSec=
|
||||||
|
RestartSteps=
|
||||||
|
RestartMaxDelaySec=
|
||||||
|
TimeoutStartSec=
|
||||||
|
TimeoutStopSec=
|
||||||
|
TimeoutAbortSec
|
||||||
|
TimeoutSec=
|
||||||
|
TimeoutStartFailureMode=
|
||||||
|
TimeoutStopFailureMode=
|
||||||
|
RuntimeMaxSec=
|
||||||
|
RuntimeRandomizedExtraSec=
|
||||||
|
WatchdogSec=
|
||||||
|
Restart=no|on-success|on-failure|on-abnormal|on-watchdog|on-abort|always
|
||||||
|
RestartMode=normal|direct
|
||||||
|
SuccessExitStatus=
|
||||||
|
RestartPreventExitStatus=
|
||||||
|
RestartForceExitStatus=
|
||||||
|
RootDirectoryStartOnly=
|
||||||
|
NonBlocking=
|
||||||
|
|
||||||
|
|
||||||
|
[Install]
|
5
systemd/slices/example.slice
Normal file
5
systemd/slices/example.slice
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
[Unit]
|
||||||
|
|
||||||
|
[Slice]
|
||||||
|
|
||||||
|
[Install]
|
65
systemd/sockets/example.socket
Normal file
65
systemd/sockets/example.socket
Normal file
|
@ -0,0 +1,65 @@
|
||||||
|
[Unit]
|
||||||
|
|
||||||
|
[Socket]
|
||||||
|
ListenStream=
|
||||||
|
ListenDatagram=
|
||||||
|
ListenSequentialPacket=
|
||||||
|
ListenFIFO=
|
||||||
|
ListenSpecial=
|
||||||
|
ListenNetlink=
|
||||||
|
ListenMessageQueue=
|
||||||
|
ListenUSBFunction=
|
||||||
|
SocketProtocol=
|
||||||
|
BindIPv6Only=
|
||||||
|
Backlog=
|
||||||
|
BindToDevice=
|
||||||
|
SocketUser=
|
||||||
|
SocketGroup=
|
||||||
|
SocketMode=
|
||||||
|
DirectoryMode=
|
||||||
|
Accept=
|
||||||
|
Writable=
|
||||||
|
FlushPending=
|
||||||
|
MaxConnections=
|
||||||
|
MaxConnectionsPerSource=
|
||||||
|
KeepAlive=
|
||||||
|
KeepAliveTimeSec=
|
||||||
|
KeepAliveIntervalSec=
|
||||||
|
KeepAliveProbes=
|
||||||
|
NoDelay=
|
||||||
|
Priority=
|
||||||
|
DeferAcceptSec=
|
||||||
|
ReceiveBuffer=
|
||||||
|
SendBuffer=
|
||||||
|
IPTOS=
|
||||||
|
IPTTL=
|
||||||
|
Mark=
|
||||||
|
ReusePort=
|
||||||
|
SmackLabel=
|
||||||
|
SmackLabelIPIn=
|
||||||
|
SmackLabelIPOut=
|
||||||
|
SELinuxContextFromNet=
|
||||||
|
PipeSize=
|
||||||
|
MessageQueueMaxMessages=
|
||||||
|
MessageQueueMessageSize=
|
||||||
|
FreeBind=
|
||||||
|
Transparent=
|
||||||
|
Broadcast=
|
||||||
|
PassCredentials=
|
||||||
|
PassSecurity=
|
||||||
|
PassPacketInfo=
|
||||||
|
Timestamping=
|
||||||
|
TCPCongestion=
|
||||||
|
ExecStartPre=
|
||||||
|
ExecStartPost=
|
||||||
|
ExecStopPre=
|
||||||
|
ExecStopPost=
|
||||||
|
TimeoutSec=
|
||||||
|
Service=
|
||||||
|
RemoveOnStop=
|
||||||
|
Symlinks=
|
||||||
|
FileDescriptorName=
|
||||||
|
TriggerLimitIntervalSec=
|
||||||
|
TriggerLimitBurst=
|
||||||
|
|
||||||
|
[Install]
|
9
systemd/swap/example.swap
Normal file
9
systemd/swap/example.swap
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
[Unit]
|
||||||
|
|
||||||
|
[Swap]
|
||||||
|
What=
|
||||||
|
Priority=
|
||||||
|
Options=
|
||||||
|
TimeoutSec=
|
||||||
|
|
||||||
|
[Install]
|
3
systemd/targets/example.target
Normal file
3
systemd/targets/example.target
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
[Unit]
|
||||||
|
|
||||||
|
[Install]
|
20
systemd/timers/example.timer
Normal file
20
systemd/timers/example.timer
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
[Unit]
|
||||||
|
|
||||||
|
[Timer]
|
||||||
|
OnActiveSec=
|
||||||
|
OnBootSec=
|
||||||
|
OnStartupSec=
|
||||||
|
OnUnitActiveSec=
|
||||||
|
OnUnitInactiveSec=
|
||||||
|
OnCalendar=
|
||||||
|
AccuracySec=
|
||||||
|
RandomizedDelaySec=
|
||||||
|
FixedRandomDelay=
|
||||||
|
OnClockChange=
|
||||||
|
OnTimezoneChange=
|
||||||
|
Unit=
|
||||||
|
Persistent=
|
||||||
|
WakeSystem=
|
||||||
|
RemainAfterElapse=
|
||||||
|
|
||||||
|
[Install]
|
118
systemd/unit.example
Normal file
118
systemd/unit.example
Normal file
|
@ -0,0 +1,118 @@
|
||||||
|
[Unit]
|
||||||
|
Description=
|
||||||
|
Documentation=
|
||||||
|
Wants=
|
||||||
|
Requires=
|
||||||
|
Requisite=
|
||||||
|
BindsTo= (BoundBy=)
|
||||||
|
PartOf= (ConsistsOf=)
|
||||||
|
Upholds=
|
||||||
|
Conflicts=
|
||||||
|
Before=
|
||||||
|
After=
|
||||||
|
OnFailure=
|
||||||
|
OnSuccess=
|
||||||
|
PropagatesReloadTo=
|
||||||
|
ReloadPropagatedFrom=
|
||||||
|
PropagatesStopTo=
|
||||||
|
StopPropagatedFrom=
|
||||||
|
JoinsNamespaceOf=
|
||||||
|
RequiresMountFor=
|
||||||
|
OnSuccessJobMode=replace
|
||||||
|
OnFailureJobMode=replace
|
||||||
|
IgnoreOnIsolate=false
|
||||||
|
StopWhenUnneeded=false
|
||||||
|
RefuseManualStart=false
|
||||||
|
RefuseManualStop=false
|
||||||
|
AllowIsolate=false
|
||||||
|
DefaultDependencies=yes
|
||||||
|
CollectMode=inactive
|
||||||
|
FailureAction=none
|
||||||
|
SuccessAction=none
|
||||||
|
FailureActionExitStatus=
|
||||||
|
SuccessActionExitStatus=
|
||||||
|
JobTimeoutSec=infinity
|
||||||
|
JobRunningTimeoutSec=infinity
|
||||||
|
JobTimeoutAction=none
|
||||||
|
JobTimeoutRebootArgument=
|
||||||
|
StartLimitIntervalSec=(Intervall)
|
||||||
|
StartLimitBurst=(Häufig)
|
||||||
|
StartLimitAction=none
|
||||||
|
RebootArgument=
|
||||||
|
(SourcePath=)
|
||||||
|
##################
|
||||||
|
ConditionArchitecture=x86|x86-64|ppc|ppc-le|ppc64|ppc64-le|ia64|parisc|parisc64|s390|s390x|sparc|sparc64|mips|mips-le|mips64|mips64-le|alpha|arm|arm-be|arm64|arm64-be|sh|sh64|m68k|tilegx|cris|arc|arc-be|native
|
||||||
|
ConditionFirmware=uefi|device-tree|device-tree(Wert)|smbios-field(Feld Operator Wert)
|
||||||
|
ConditionVirtualization=yes|no|vm|container|qemu|kvm|amazon|zvm|vmware|microsoft|oracle|powervm|xen|bochs|uml|bhyve|qnx|apple|sre|openvz|lxc|lxc-libvirt|systemd-nspawn|docker|podman|rkt|wsl|proot|pouch|acrn
|
||||||
|
ConditionHost=
|
||||||
|
ConditionKernelCommandLine=
|
||||||
|
ConditionKernelVersion=
|
||||||
|
ConditionCredential=
|
||||||
|
ConditionEnvironment=
|
||||||
|
ConditionSecurity=selinux|apparmor|tomoyo|ima|smack|audit|uefi-secureboot|tpm2|cvm
|
||||||
|
ConditionCapability=
|
||||||
|
ConditionACPower=
|
||||||
|
ConditionNeedsUpdate=
|
||||||
|
ConditionFirstBoot=
|
||||||
|
ConditionPathExists=
|
||||||
|
ConditionPathExistsGlob=
|
||||||
|
ConditionPathIsDirectory=
|
||||||
|
ConditionPathIsSymbolicLink=
|
||||||
|
ConditionPathIsMountPoint=
|
||||||
|
ConditionPathIsReadWrite=
|
||||||
|
ConditionPathIsEncrypted=
|
||||||
|
ConditionDirectoryNotEmpty=
|
||||||
|
ConditionFileNotEmpty=
|
||||||
|
ConditionFileIsExecutable=
|
||||||
|
ConditionUser=(uid)|@system
|
||||||
|
ConditionGroup=(gid)
|
||||||
|
ConditionControlGroupController=
|
||||||
|
ConditionMemory=
|
||||||
|
ConditionCPUs
|
||||||
|
ConditionCPUFeature=fpu|vme|de|pse|tsc|msr|pae|mce|cx8|apic|sep|mtrr|pge|mca|cmov|pat|pse36|clflush|mmx|fxsr|sse|sse2|ht|pni|pclmul|monitor|ssse3|fma3|cx16|sse4_1|sse4_2|movbe|popcnt|aes|xsave|osxsave|avx|f16c|rdrand|bmi1|avx2|bmi2|rdseed|adx|sha_ni|syscall|rdtscp|lm|lahf_lm|abm|constant_tsc
|
||||||
|
ConditionOSRelease=
|
||||||
|
ConditionMemoryPressure=
|
||||||
|
ConditionCPUPressure=
|
||||||
|
ConditionIOPressure=
|
||||||
|
|
||||||
|
AssertArchitecture=x86|x86-64|ppc|ppc-le|ppc64|ppc64-le|ia64|parisc|parisc64|s390|s390x|sparc|sparc64|mips|mips-le|mips64|mips64-le|alpha|arm|arm-be|arm64|arm64-be|sh|sh64|m68k|tilegx|cris|arc|arc-be|native
|
||||||
|
AssertFirmware=uefi|device-tree|device-tree(Wert)|smbios-field(Feld Operator Wert)
|
||||||
|
AssertVirtualization=yes|no|vm|container|qemu|kvm|amazon|zvm|vmware|microsoft|oracle|powervm|xen|bochs|uml|bhyve|qnx|apple|sre|openvz|lxc|lxc-libvirt|systemd-nspawn|docker|podman|rkt|wsl|proot|pouch|acrn
|
||||||
|
AssertHost=
|
||||||
|
AssertKernelCommandLine=
|
||||||
|
AssertKernelVersion=
|
||||||
|
AssertCredential=
|
||||||
|
AssertEnvironment=
|
||||||
|
AssertSecurity=selinux|apparmor|tomoyo|ima|smack|audit|uefi-secureboot|tpm2|cvm
|
||||||
|
AssertCapability=
|
||||||
|
AssertACPower=
|
||||||
|
AssertNeedsUpdate=
|
||||||
|
AssertFirstBoot=
|
||||||
|
AssertPathExists=
|
||||||
|
AssertPathExistsGlob=
|
||||||
|
AssertPathIsDirectory=
|
||||||
|
AssertPathIsSymbolicLink=
|
||||||
|
AssertPathIsMountPoint=
|
||||||
|
AssertPathIsReadWrite=
|
||||||
|
AssertPathIsEncrypted=
|
||||||
|
AssertDirectoryNotEmpty=
|
||||||
|
AssertFileNotEmpty=
|
||||||
|
AssertFileIsExecutable=
|
||||||
|
AssertUser=(uid)|@system
|
||||||
|
AssertGroup=(gid)
|
||||||
|
AssertControlGroupController=
|
||||||
|
AssertMemory=
|
||||||
|
AssertCPUs
|
||||||
|
AssertCPUFeature=fpu|vme|de|pse|tsc|msr|pae|mce|cx8|apic|sep|mtrr|pge|mca|cmov|pat|pse36|clflush|mmx|fxsr|sse|sse2|ht|pni|pclmul|monitor|ssse3|fma3|cx16|sse4_1|sse4_2|movbe|popcnt|aes|xsave|osxsave|avx|f16c|rdrand|bmi1|avx2|bmi2|rdseed|adx|sha_ni|syscall|rdtscp|lm|lahf_lm|abm|constant_tsc
|
||||||
|
AssertOSRelease=
|
||||||
|
AssertMemoryPressure=
|
||||||
|
AssertCPUPressure=
|
||||||
|
AssertIOPressure=
|
||||||
|
|
||||||
|
[Install]
|
||||||
|
RequiredBy=
|
||||||
|
WantedBy=
|
||||||
|
UpheldBy=
|
||||||
|
Alias=
|
||||||
|
Also=
|
||||||
|
DefaultInstance=
|
Loading…
Reference in a new issue