diff options
-rwxr-xr-x | util/abuild/abuild | 4 | ||||
-rwxr-xr-x | util/board_status/getrevision.sh | 2 | ||||
-rw-r--r-- | util/cbfstool/lz4/lz4_Frame_format.md | 2 | ||||
-rw-r--r-- | util/coreboot-configurator/src/application/MainWindow.cpp | 4 | ||||
-rw-r--r-- | util/coreboot-configurator/src/application/qrc/categories.yaml | 2 |
5 files changed, 7 insertions, 7 deletions
diff --git a/util/abuild/abuild b/util/abuild/abuild index 2632aaa176..c8c56f8e31 100755 --- a/util/abuild/abuild +++ b/util/abuild/abuild @@ -61,10 +61,10 @@ configdir="$TOP/configs" TIMELESS=0 # One might want to adjust these in case of cross compiling -for i in make gmake gnumake nonexistant_make; do +for i in make gmake gnumake nonexistent_make; do $i --version 2>/dev/null |grep "GNU Make" >/dev/null && break done -if [ "$i" = "nonexistant_make" ]; then +if [ "$i" = "nonexistent_make" ]; then echo No GNU Make found. exit 1 fi diff --git a/util/board_status/getrevision.sh b/util/board_status/getrevision.sh index ddbfde0e76..041f6f2013 100755 --- a/util/board_status/getrevision.sh +++ b/util/board_status/getrevision.sh @@ -208,7 +208,7 @@ main() { fi query_path=$1 else - echo "Warning: Ignoring over-abundant paramter: \"${1}\"">&2 + echo "Warning: Ignoring over-abundant parameter: \"${1}\"">&2 fi shift;; esac; diff --git a/util/cbfstool/lz4/lz4_Frame_format.md b/util/cbfstool/lz4/lz4_Frame_format.md index 2ea1a86802..74c78d5aa5 100644 --- a/util/cbfstool/lz4/lz4_Frame_format.md +++ b/util/cbfstool/lz4/lz4_Frame_format.md @@ -343,7 +343,7 @@ __EndMark__ End of legacy frame is implicit only. It must be followed by a standard EOF (End Of File) signal, -wether it is a file or a stream. +whether it is a file or a stream. Alternatively, if the frame is followed by a valid Frame Magic Number, it is considered completed. diff --git a/util/coreboot-configurator/src/application/MainWindow.cpp b/util/coreboot-configurator/src/application/MainWindow.cpp index d51937d161..974f2adc90 100644 --- a/util/coreboot-configurator/src/application/MainWindow.cpp +++ b/util/coreboot-configurator/src/application/MainWindow.cpp @@ -14,7 +14,7 @@ #include "ToggleSwitch.h" #include "ui_MainWindow.h" -static auto s_errorWindowTitle = MainWindow::tr("Error Occured"); +static auto s_errorWindowTitle = MainWindow::tr("Error Occurred"); static auto s_nvramErrorMessage = MainWindow::tr("Nvramtool was not able to access cmos settings. Look at documentation for possible causes of errors."); QString makeNvramErrorMessage(const QString& error){ @@ -347,7 +347,7 @@ void MainWindow::writeSettings(const QString &fileName) return; } if(!Configuration::toFile(fileName, m_parameters)){ - QMessageBox::critical(this, tr("Error Occured"), tr("Can't open file to write")); + QMessageBox::critical(this, tr("Error Occurred"), tr("Can't open file to write")); this->close(); } } diff --git a/util/coreboot-configurator/src/application/qrc/categories.yaml b/util/coreboot-configurator/src/application/qrc/categories.yaml index 21419511fe..dc0e38bccd 100644 --- a/util/coreboot-configurator/src/application/qrc/categories.yaml +++ b/util/coreboot-configurator/src/application/qrc/categories.yaml @@ -85,7 +85,7 @@ kbl_timeout: displayName: Keyboard Backlight Timeout type: enum - help: Adjust the amout of time before the keyboard backlight turns off when un-used + help: Adjust the amount of time before the keyboard backlight turns off when un-used fn_ctrl_swap: displayName: Fn Ctrl Reverse type: bool |