Skip to content

Commit

Permalink
Minor styling changes in some init scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
nisargjhaveri committed Oct 2, 2024
1 parent 84ca61d commit 3991276
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 16 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@
#

case "$1" in
start)
echo "Loading kernel modules..."
modprobe -a brcmfmac hci_uart # Wireless drivers
modprobe -a dwc2 libcomposite # USB gadget drivers
;;
*)
echo "Usage: $0 {start}"
exit 1
start)
echo "Loading kernel modules..."
modprobe -a brcmfmac hci_uart # Wireless drivers
modprobe -a dwc2 libcomposite # USB gadget drivers
;;
*)
echo "Usage: $0 {start}"
exit 1
esac

exit $?
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@
#

case "$1" in
start)
echo "Setup persistent storage..."
mkdir -p /persist/seedrng
mkdir -p /persist/bluetooth
;;
*)
echo "Usage: $0 {start}"
exit 1
start)
echo "Setup persistent storage..."
mkdir -p /persist/seedrng
mkdir -p /persist/bluetooth
;;
*)
echo "Usage: $0 {start}"
exit 1
esac

exit $?

0 comments on commit 3991276

Please sign in to comment.