summaryrefslogtreecommitdiff
path: root/Meta/run.sh
diff options
context:
space:
mode:
authorTom <tomut@yahoo.com>2022-01-01 13:53:25 -0700
committerBrian Gianforcaro <b.gianfo@gmail.com>2022-01-01 21:05:44 +0000
commit2bb32a87f9b942c90afef871603e3d5e3b851255 (patch)
treeb8725ef8fa38f9af48ca5d606f51aab4f378db9f /Meta/run.sh
parentd1e7b69004606904e6d9ab81c84bdc7d28c38f5d (diff)
downloadserenity-2bb32a87f9b942c90afef871603e3d5e3b851255.zip
Meta: Rename SERINITY_NVME_ENABLE variable to SERENITY_NVME_ENABLE
Diffstat (limited to 'Meta/run.sh')
-rwxr-xr-xMeta/run.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/Meta/run.sh b/Meta/run.sh
index 25fcff50b7..14194029e3 100755
--- a/Meta/run.sh
+++ b/Meta/run.sh
@@ -190,10 +190,10 @@ else
fi
# Check if SERENITY_NVME_ENABLE is unset
-if [ -z ${SERINITY_NVME_ENABLE+x} ]; then
+if [ -z ${SERENITY_NVME_ENABLE+x} ]; then
SERENITY_BOOT_DRIVE="-drive file=${SERENITY_DISK_IMAGE},format=raw,index=0,media=disk"
else
- if [ "$SERINITY_NVME_ENABLE" -eq 1 ]; then
+ if [ "$SERENITY_NVME_ENABLE" -eq 1 ]; then
SERENITY_BOOT_DRIVE="-drive file=${SERENITY_DISK_IMAGE},format=raw,index=0,media=disk,if=none,id=disk"
SERENITY_BOOT_DRIVE="$SERENITY_BOOT_DRIVE -device i82801b11-bridge,id=bridge4 -device sdhci-pci,bus=bridge4"
SERENITY_BOOT_DRIVE="$SERENITY_BOOT_DRIVE -device nvme,serial=deadbeef,drive=disk,bus=bridge4"