Merge branch 'master' of github.com:r0ket/r0ket
This commit is contained in:
commit
bbc739589b
|
@ -6,3 +6,4 @@ lcd/allfonts.h
|
||||||
Makefile.dep
|
Makefile.dep
|
||||||
table.c
|
table.c
|
||||||
table.h
|
table.h
|
||||||
|
SECRETS.release
|
||||||
|
|
|
@ -1,6 +1,8 @@
|
||||||
#ifndef _SECRETS_
|
#ifndef _SECRETS_
|
||||||
#define _SECRETS_
|
#define _SECRETS_
|
||||||
|
|
||||||
|
#undef ENCRYPT_L0DABLE
|
||||||
|
|
||||||
static uint32_t const meshkey[4] = {
|
static uint32_t const meshkey[4] = {
|
||||||
0x00000042, 0x000005ec, 0x00000023, 0x00000005
|
0x00000042, 0x000005ec, 0x00000023, 0x00000005
|
||||||
};
|
};
|
||||||
|
|
|
@ -44,7 +44,10 @@ char nickl0[FILENAMELEN];
|
||||||
void applyConfig(){
|
void applyConfig(){
|
||||||
if(GLOBAL(lcdcontrast)>0)
|
if(GLOBAL(lcdcontrast)>0)
|
||||||
lcdSetContrast(GLOBAL(lcdcontrast));
|
lcdSetContrast(GLOBAL(lcdcontrast));
|
||||||
enableConfig(CFG_TYPE_DEVEL,GLOBAL(develmode));
|
if(GLOBAL(develmode))
|
||||||
|
enableConfig(CFG_TYPE_DEVEL,1);
|
||||||
|
if(isNight())
|
||||||
|
backlightSetBrightness(GLOBAL(lcdbacklight));
|
||||||
};
|
};
|
||||||
|
|
||||||
int saveConfig(void){
|
int saveConfig(void){
|
||||||
|
|
|
@ -0,0 +1,23 @@
|
||||||
|
#!/usr/bin/perl
|
||||||
|
#
|
||||||
|
# vim:set ts=4 sw=4:
|
||||||
|
|
||||||
|
use strict;
|
||||||
|
|
||||||
|
my $good;
|
||||||
|
|
||||||
|
my $search=shift;
|
||||||
|
|
||||||
|
open(F,"<","SECRETS") || die;
|
||||||
|
|
||||||
|
while(<F>){
|
||||||
|
chomp;s///;
|
||||||
|
if($good){
|
||||||
|
s/0x//g;y/ ,;//d;
|
||||||
|
print $_,"\n";
|
||||||
|
exit;
|
||||||
|
};
|
||||||
|
if(/$search/){
|
||||||
|
$good=1;
|
||||||
|
};
|
||||||
|
};
|
|
@ -69,8 +69,28 @@ mv l0dable/*.c0d $TARG/files/
|
||||||
mv l0dable/*.int $TARG/files/
|
mv l0dable/*.int $TARG/files/
|
||||||
mv l0dable/*.nik $TARG/files/
|
mv l0dable/*.nik $TARG/files/
|
||||||
|
|
||||||
|
skey=`./getkey.pl l0dable_sign`
|
||||||
|
ekey=`./getkey.pl l0dable_crypt`
|
||||||
|
|
||||||
|
if [ -z "$ekey" ] ; then
|
||||||
|
echo E-Key fail
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ -z "$skey" ] ; then
|
||||||
|
echo S-Key fail
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
for a in $TARG/files/*.c0d $TARG/files/*.int $TARG/files/*.nik ; do
|
||||||
|
echo Crypting $a
|
||||||
|
../tools/crypto/xxtea -e -k $ekey -s -k $skey $a
|
||||||
|
done
|
||||||
|
|
||||||
|
|
||||||
echo "###"
|
echo "###"
|
||||||
echo "### Done. Yay!"
|
echo "### Done. Yay!"
|
||||||
echo "###"
|
echo "###"
|
||||||
|
|
||||||
git checkout SECRETS
|
git checkout SECRETS
|
||||||
|
git checkout filesystem/ffconf.h
|
||||||
|
|
Loading…
Reference in New Issue