serenity/Kernel
Shannon Booth fe668db999 Meta: Fix shellcheck warnings in various scripts
Warnings fixed:
 * SC2086: Double quote to prevent globbing and word splitting.
 * SC2006: Use $(...) notation instead of legacy backticked `...`
 * SC2039: In POSIX sh, echo flags are undefined
 * SC2209: Use var=$(command) to assign output (or quote to assign string)
 * SC2164: Use 'cd ... || exit' or 'cd ... || return' in case cd fails
 * SC2166: Prefer [ p ] && [ q ] as [ p -a q ] is not well defined.
 * SC2034: i appears unused. Verify use (or export if used externally)
 * SC2046: Quote this to prevent word splitting.
 * SC2236: Use -z instead of ! -n.

There are still a lot of warnings in Kernel/run about:
 - SC2086: Double quote to prevent globbing and word splitting.

However, splitting on space is intentional in this case, and not trivial to
change. Therefore ignore the warning for now - but we should fix this in
the future.
2020-02-10 10:46:25 +01:00
..
ACPI Kernel: Use VirtualAddress & PhysicalAddress classes from LibBareMetal 2020-02-09 19:38:17 +01:00
Arch/i386 Kernel: Use VirtualAddress & PhysicalAddress classes from LibBareMetal 2020-02-09 19:38:17 +01:00
Devices Kernel: Use VirtualAddress & PhysicalAddress classes from LibBareMetal 2020-02-09 19:38:17 +01:00
FileSystem Kernel: Use VirtualAddress & PhysicalAddress classes from LibBareMetal 2020-02-09 19:38:17 +01:00
Heap Kernel: Apply changes to use LibBareMetal definitions 2020-02-09 19:38:17 +01:00
Net Kernel: Apply changes to use LibBareMetal definitions 2020-02-09 19:38:17 +01:00
PCI Kernel: Apply changes to use LibBareMetal definitions 2020-02-09 19:38:17 +01:00
TTY Kernel: Apply changes to use LibBareMetal definitions 2020-02-09 19:38:17 +01:00
VM Kernel: Use VirtualAddress & PhysicalAddress classes from LibBareMetal 2020-02-09 19:38:17 +01:00
.bochsrc
.gitignore
Assertions.h Kernel: Apply changes to use LibBareMetal definitions 2020-02-09 19:38:17 +01:00
build-image-grub.sh Partition Table: Change Script files 2020-02-02 00:20:41 +01:00
build-image-qemu.sh Meta: Fix shellcheck warnings in various scripts 2020-02-10 10:46:25 +01:00
build-root-filesystem.sh WebServer: Implement a very basic HTTP server :^) 2020-02-09 14:15:55 +01:00
CMOS.cpp Kernel: Apply changes to use LibBareMetal definitions 2020-02-09 19:38:17 +01:00
CMOS.h
debug-kernel
DoubleBuffer.cpp Kernel: Allow short writes to DoubleBuffer 2020-02-01 10:56:17 +01:00
DoubleBuffer.h
FB.h
grub-ebr.cfg Partition Table: Change Script files 2020-02-02 00:20:41 +01:00
grub-gpt.cfg Partition Table: Change Script files 2020-02-02 00:20:41 +01:00
grub-mbr.cfg Partition Table: Change Script files 2020-02-02 00:20:41 +01:00
init.cpp Kernel: Apply changes to use LibBareMetal definitions 2020-02-09 19:38:17 +01:00
InterruptHandler.cpp
InterruptHandler.h
IRQHandler.cpp
IRQHandler.h
KBuffer.h
KBufferBuilder.cpp
KBufferBuilder.h
KernelInfoPage.h
KeyCode.h Kernel: Add key_code_count 2020-01-31 13:13:04 +01:00
KParams.cpp
KParams.h
KResult.h Kernel: Add KResultOr<T>::result() 2020-02-08 11:57:53 +01:00
KSyms.cpp
KSyms.h
linker.ld
Lock.cpp
Lock.h
makeall.sh Meta: Fix shellcheck warnings in various scripts 2020-02-10 10:46:25 +01:00
Makefile Kernel: Apply changes to use LibBareMetal definitions 2020-02-09 19:38:17 +01:00
mkmap.sh Meta: Fix shellcheck warnings in various scripts 2020-02-10 10:46:25 +01:00
Module.h
MousePacket.h Kernel: Add support for vmmouse 2020-02-04 19:11:52 +01:00
Multiboot.h
PerformanceEventBuffer.cpp Kernel: Start working on a syscall for logging performance events 2020-02-02 20:26:27 +01:00
PerformanceEventBuffer.h Kernel: Start working on a syscall for logging performance events 2020-02-02 20:26:27 +01:00
Process.cpp Kernel: Apply changes to use LibBareMetal definitions 2020-02-09 19:38:17 +01:00
Process.h Net: Add a basic sys$shutdown() implementation 2020-02-08 00:54:43 +01:00
ProcessTracer.cpp
ProcessTracer.h
Profiling.cpp
Profiling.h
Random.cpp
Random.h
RTC.cpp
RTC.h
run Meta: Fix shellcheck warnings in various scripts 2020-02-10 10:46:25 +01:00
Scheduler.cpp Kernel: Finalizer should not go back to sleep if there's more to do 2020-02-01 10:56:17 +01:00
Scheduler.h Kernel: Finalizer should not go back to sleep if there's more to do 2020-02-01 10:56:17 +01:00
SharedBuffer.cpp
SharedBuffer.h
SharedInterruptHandler.cpp
SharedInterruptHandler.h
sync.sh Meta: Fix shellcheck warnings in various scripts 2020-02-10 10:46:25 +01:00
Syscall.cpp
Syscall.h Net: Add a basic sys$shutdown() implementation 2020-02-08 00:54:43 +01:00
TestModule.cpp Kernel: Apply changes to use LibBareMetal definitions 2020-02-09 19:38:17 +01:00
Thread.cpp Kernel: Finalizer should not go back to sleep if there's more to do 2020-02-01 10:56:17 +01:00
Thread.h Kernel: Update Thread::raw_backtrace() signature to use uintptr_t 2020-02-02 19:00:38 +01:00
TimerQueue.cpp
TimerQueue.h
UnixTypes.h Net: Add a basic sys$shutdown() implementation 2020-02-08 00:54:43 +01:00
WaitQueue.cpp
WaitQueue.h