mirror of
https://github.com/RetroPie/RetroPie-Setup.git
synced 2025-04-02 10:51:41 -04:00
72 lines
2.3 KiB
Bash
72 lines
2.3 KiB
Bash
#!/usr/bin/env bash
|
|
|
|
# This file is part of The RetroPie Project
|
|
#
|
|
# The RetroPie Project is the legal property of its developers, whose names are
|
|
# too numerous to list here. Please refer to the COPYRIGHT.md file distributed with this source.
|
|
#
|
|
# See the LICENSE.md file at the top-level directory of this distribution and
|
|
# at https://raw.githubusercontent.com/RetroPie/RetroPie-Setup/master/LICENSE.md
|
|
#
|
|
|
|
rp_module_id="controlblock"
|
|
rp_module_desc="ControlBlock Driver"
|
|
rp_module_help="Please note that you need to manually enable or disable the ControlBlock Service in the Configuration section. IMPORTANT: If the service is enabled and the power switch functionality is enabled (which is the default setting) in the config file, you need to have a switch connected to the ControlBlock."
|
|
rp_module_licence="NONCOM https://raw.githubusercontent.com/petrockblog/ControlBlockService2/master/LICENSE.txt"
|
|
rp_module_repo="git https://github.com/petrockblog/ControlBlockService2.git master"
|
|
rp_module_section="driver"
|
|
rp_module_flags="noinstclean !all rpi"
|
|
|
|
function depends_controlblock() {
|
|
local depends=(cmake doxygen gpiod libgpiod-dev)
|
|
isPlatform "rpi" && depends+=(libraspberrypi-dev)
|
|
|
|
getDepends "${depends[@]}"
|
|
}
|
|
|
|
function sources_controlblock() {
|
|
gitPullOrClone "$md_inst"
|
|
}
|
|
|
|
function build_controlblock() {
|
|
cd "$md_inst"
|
|
rm -rf "build"
|
|
mkdir build
|
|
cd build
|
|
cmake ..
|
|
make
|
|
md_ret_require="$md_inst/build/controlblock"
|
|
}
|
|
|
|
function install_controlblock() {
|
|
# install from there to system folders
|
|
cd "$md_inst/build"
|
|
make install
|
|
}
|
|
|
|
function gui_controlblock() {
|
|
local cmd=(dialog --backtitle "$__backtitle" --menu "Choose an option." 22 86 16)
|
|
local options=(
|
|
1 "Enable ControlBlock driver"
|
|
2 "Disable ControlBlock driver"
|
|
|
|
)
|
|
local choice=$("${cmd[@]}" "${options[@]}" 2>&1 >/dev/tty)
|
|
if [[ -n "$choice" ]]; then
|
|
case "$choice" in
|
|
1)
|
|
make -C "$md_inst/build" installservice
|
|
printMsgs "dialog" "Enabled ControlBlock driver."
|
|
;;
|
|
2)
|
|
make -C "$md_inst/build" uninstallservice
|
|
printMsgs "dialog" "Disabled ControlBlock driver."
|
|
;;
|
|
esac
|
|
fi
|
|
}
|
|
|
|
function remove_controlblock() {
|
|
make -C "$md_inst/build" uninstallservice
|
|
make -C "$md_inst/build" uninstall
|
|
}
|