-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
961e41f
commit 4ac2b80
Showing
3 changed files
with
27 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
# Boot Up | ||
# Startup | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,27 @@ | ||
--- | ||
description: How to diagnose startup panics. | ||
--- | ||
|
||
# Panics | ||
|
||
## Overview | ||
|
||
During system startup it is possible for an unrecoverable error to occur, know as a panic. Panics can come from many different sources and subsystems. Below you can find some information on how to handle basic and/or common system panics, however if you are experiencing a panic that isn't listed below, please visit the community forums. | ||
|
||
## Invalid CmdLine | ||
|
||
### Missing cmdline | ||
|
||
``` | ||
Error: invalid-cmdline | ||
Reason: | ||
``` | ||
|
||
{% hint style="danger" %} | ||
This error is caused by a corrupted filesystem. | ||
|
||
If you have modified any files manually, you should revert them, otherwise a serious fault has occurred, such as a failing USB. You should backup your SkylarkOS configs and restore them to another USB. | ||
{% endhint %} | ||
|
||
|
||
|