Files
RedBear-OS/fmt.sh
T
Anhad Singh 2f2720263f drivers: add inputd
Take out the input coalescing from `vesad` into `inputd`.

Signed-off-by: Anhad Singh <andypython@protonmail.com>
2023-07-05 11:12:53 +10:00

18 lines
254 B
Bash
Executable File

#!/usr/bin/bash
function fmt() {
for dir in "$@"
do
pushd $dir
printf "\e[1;32mFormatting\e[0m $dir\n"
cargo fmt
popd
done
}
fmt virtio-core \
virtio-netd \
virtio-blkd \
virtio-gpud \
inputd