Last active
August 29, 2015 14:21
-
-
Save nknote/1b672e2bf84feeebcb8a to your computer and use it in GitHub Desktop.
Odroid C1 Settings
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# /etc/lirc/hardware.conf | |
# | |
#Chosen Remote Control | |
REMOTE="None" | |
REMOTE_MODULES="meson-ir" | |
REMOTE_DRIVER="default" | |
REMOTE_DEVICE="/dev/lirc0" | |
REMOTE_SOCKET="" | |
REMOTE_LIRCD_CONF="" | |
REMOTE_LIRCD_ARGS="" | |
#Chosen IR Transmitter | |
TRANSMITTER="None" | |
TRANSMITTER_MODULES="" | |
TRANSMITTER_DRIVER="" | |
TRANSMITTER_DEVICE="" | |
TRANSMITTER_SOCKET="" | |
TRANSMITTER_LIRCD_CONF="" | |
TRANSMITTER_LIRCD_ARGS="" | |
#Disable kernel support. | |
#Typically, lirc will disable in-kernel support for ir devices in order to | |
#handle them internally. Set to false to prevent lirc from disabling this | |
#in-kernel support. | |
#DISABLE_KERNEL_SUPPORT="true" | |
#Enable lircd | |
START_LIRCD="true" | |
#Don't start lircmd even if there seems to be a good config file | |
#START_LIRCMD="false" | |
#Try to load appropriate kernel modules | |
LOAD_MODULES="true" | |
# Default configuration files for your hardware if any | |
LIRCMD_CONF="" | |
#Forcing noninteractive reconfiguration | |
#If lirc is to be reconfigured by an external application | |
#that doesn't have a debconf frontend available, the noninteractive | |
#frontend can be invoked and set to parse REMOTE and TRANSMITTER | |
#It will then populate all other variables without any user input | |
#If you would like to configure lirc via standard methods, be sure | |
#to leave this set to "false" | |
FORCE_NONINTERACTIVE_RECONFIGURATION="false" | |
START_LIRCMD="" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[global] | |
workgroup = WORKGROUP | |
server string = Samba Server %v | |
netbios name = Venus | |
security = user | |
map to guest = bad user | |
dns proxy = no | |
acl check permissions = false | |
hide files = /lost+found/ | |
use sendfile = yes | |
socket options = TCP_NODELAY IPTOS_LOWDELAY SO_RCVBUF=2048000 SO_SNDBUF=2048000 | |
min receivefile size = 16384 | |
smb encrypt = disabled | |
#============================ Share Definitions ============================== | |
[root$] | |
path = / | |
browsable =yes | |
writable = yes | |
guest ok = yes | |
read only = no | |
force user = root | |
[hdd] | |
comment = USB hard | |
path = /media/hdd | |
browseable = yes | |
guest ok = yes | |
force group = users | |
force user = root | |
writeable = yes | |
create mask = 0664 | |
force directory mode = 0775 | |
[mmc] | |
path = /media/mmc | |
browseable = yes | |
guest ok = yes | |
force group = users | |
force user = root | |
writeable = yes | |
create mask = 0664 | |
force directory mode = 0775 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment