Compare commits
62 Commits
R2600AD-rc
...
master
| Author | SHA1 | Date |
|---|---|---|
|
|
9721c9a0c9 | 11 years ago |
|
|
11c89e386e | 12 years ago |
|
|
eb472906d7 | 12 years ago |
|
|
97c04c1f08 | 12 years ago |
|
|
0d62e563bc | 12 years ago |
|
|
a283d30857 | 12 years ago |
|
|
9411b751e4 | 12 years ago |
|
|
e00e8d98e3 | 12 years ago |
|
|
19c4f2c43b | 12 years ago |
|
|
445011ff8b | 12 years ago |
|
|
cfbc4e9cb7 | 12 years ago |
|
|
0eb3d41fc7 | 12 years ago |
|
|
255fc16d39 | 12 years ago |
|
|
31436f4f5c | 12 years ago |
|
|
d6dc606c6b | 12 years ago |
|
|
b87b6fba63 | 12 years ago |
|
|
caad7e6920 | 12 years ago |
|
|
2848753ce9 | 12 years ago |
|
|
ac5f52aff5 | 12 years ago |
|
|
d841fffa6a | 12 years ago |
|
|
e32683bec2 | 12 years ago |
|
|
382c7a1298 | 12 years ago |
|
|
be8b84f5a1 | 12 years ago |
|
|
c04b34cb71 | 12 years ago |
|
|
4d14b354ba | 12 years ago |
|
|
100783fd07 | 12 years ago |
|
|
026572886d | 12 years ago |
|
|
c89513c92d | 12 years ago |
|
|
28226e50c3 | 12 years ago |
|
|
c6142c5822 | 12 years ago |
|
|
e74f166524 | 12 years ago |
|
|
2a8a6e8822 | 12 years ago |
|
|
d9e384ad63 | 12 years ago |
|
|
327c1592dd | 12 years ago |
|
|
2d931dbeeb | 12 years ago |
|
|
246bf147a8 | 12 years ago |
|
|
96ba891746 | 12 years ago |
|
|
63c860aaad | 12 years ago |
|
|
35d4eda6ad | 12 years ago |
|
|
d4229defb6 | 12 years ago |
|
|
ac9495bd07 | 12 years ago |
|
|
fbc406485f | 12 years ago |
|
|
c601f64721 | 12 years ago |
|
|
7863be035d | 12 years ago |
|
|
1f9ba0c582 | 12 years ago |
|
|
001d4c3cbb | 12 years ago |
|
|
7fec17eb98 | 12 years ago |
|
|
3c96c0517b | 12 years ago |
|
|
a8d3e86ae6 | 12 years ago |
|
|
9cee646c66 | 12 years ago |
|
|
11a3da436c | 12 years ago |
|
|
b2cbc3261c | 12 years ago |
|
|
a456a5db1a | 12 years ago |
|
|
c4fdf74ac1 | 12 years ago |
|
|
e3b6158b49 | 12 years ago |
|
|
7542c1abd6 | 12 years ago |
|
|
4084dca1ec | 12 years ago |
|
|
cb85c84294 | 12 years ago |
|
|
55fdf072d0 | 12 years ago |
|
|
0486c54820 | 12 years ago |
|
|
f4cf246415 | 12 years ago |
|
|
1a48c93aca | 12 years ago |
@ -0,0 +1,37 @@
|
||||
*.cdf
|
||||
*.cache
|
||||
*.obj
|
||||
*.ilk
|
||||
*.resources
|
||||
*.tlb
|
||||
*.tli
|
||||
*.tlh
|
||||
*.tmp
|
||||
*.rsp
|
||||
*.pgc
|
||||
*.pgd
|
||||
*.meta
|
||||
*.tlog
|
||||
*.manifest
|
||||
*.res
|
||||
*.log
|
||||
*.pch
|
||||
*.exp
|
||||
*.idb
|
||||
*.rep
|
||||
*.exe
|
||||
*.dll
|
||||
*.xdc
|
||||
*.pdb
|
||||
*.dump
|
||||
*_manifest.rc
|
||||
*.lib
|
||||
*.bsc
|
||||
*.sbr
|
||||
*.xml
|
||||
*.metagen
|
||||
*.bi
|
||||
Release/*
|
||||
x64/*
|
||||
*.opensdf
|
||||
ipch/
|
||||
@ -0,0 +1,38 @@
|
||||
@echo off
|
||||
set bios_loader=EPSDK-SRVMGMT
|
||||
set bios_version=R1
|
||||
cd /d %~dp0
|
||||
call sys\kernel\bootable\init.bat sys sm cl tl
|
||||
echo Starting Server
|
||||
set debug_info=true
|
||||
set clean_www=false
|
||||
set server_initdir=%initdir%
|
||||
set www=%server_initdir%\www
|
||||
call %kernel%\include.bat %sdkdir%\include\server_configure.h
|
||||
set serverdir=%server_initdir%
|
||||
for %%f in (%server_initdir%;%server_initdir%\task;%server_initdir%\task\tm;%www%;%www%\sha_tbl) do if not exist %%f mkdir %%f
|
||||
for %%f in (%feature%) do if exist %appdir%\%%f\www call %kernel%\init_www.bat %%f
|
||||
for %%f in (%feature%) do if exist %appdir%\%%f\server_init.bat start /MIN %appdir%\%%f\server_init.bat __SERVER_INIT__
|
||||
|
||||
|
||||
start cmd.exe
|
||||
:loop
|
||||
|
||||
set tm=%time::=_%
|
||||
set tm=%tm:~0,-6%
|
||||
set dt=%date:/=_%
|
||||
set dt=%dt:~0,-3%
|
||||
echo 触发时间:%dt% %tm%
|
||||
if exist %server_dir%\task\%dt%\%tm%.bat call %server_dir%\task\%dt%\%tm%.bat >>%sys_log%
|
||||
if exist %server_dir%\task\tm\%tm%.bat call %server_dir%\task\tm\%tm%.bat >>%sys_log%
|
||||
|
||||
if not exist %server_dir%\task\%dt%\%tm%.bat echo 没有日期+时间触发项目
|
||||
if not exist %server_dir%\task\tm\%tm%.bat echo 没有时间触发项目
|
||||
|
||||
::RPC Control
|
||||
::Task Regist
|
||||
|
||||
|
||||
sleep 60
|
||||
|
||||
goto loop
|
||||
Binary file not shown.
@ -0,0 +1 @@
|
||||
USE_EFI_LOADER=true
|
||||
@ -1 +1,3 @@
|
||||
debug=false
|
||||
debug=false
|
||||
skip_appcheck=true
|
||||
skip_kernelcheck=true
|
||||
@ -1,2 +1,2 @@
|
||||
version=9.6.7.1_rc1
|
||||
name=ELONE_Phenom_SDK
|
||||
version=9.6.7.1
|
||||
name=ELONE-Android-ToolBox::PhoenixSDK
|
||||
@ -1,3 +1,3 @@
|
||||
b_time=2014/05/04 周日 18:23:08.89
|
||||
k_time=2014/05/04 周日
|
||||
b_time=2014/05/06 Öܶþ 18:47:17.67
|
||||
k_time=2014/05/06 Öܶþ
|
||||
build_id=8263
|
||||
|
||||
@ -1,4 +1,5 @@
|
||||
@echo off
|
||||
cd /d %~dp0
|
||||
cd ..
|
||||
set INITER=%0
|
||||
cmd.exe /k sys\kernel\bootable\bootloader.bat sys ni ni
|
||||
@ -0,0 +1,10 @@
|
||||
[string]
|
||||
*data=
|
||||
[filesum]
|
||||
*file=
|
||||
[dict]
|
||||
*file=
|
||||
[bench]
|
||||
[string_crypt]
|
||||
*data=
|
||||
[v3_test]
|
||||
Binary file not shown.
@ -0,0 +1,12 @@
|
||||
[__global]
|
||||
:1#*password=
|
||||
:2#*file=
|
||||
[create]
|
||||
*country=
|
||||
*name=
|
||||
*street=
|
||||
[check]
|
||||
[string]
|
||||
*data=
|
||||
[destring]
|
||||
*data=
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -0,0 +1,5 @@
|
||||
[__global]
|
||||
:1#*input=
|
||||
:2#*output=
|
||||
verbos=y
|
||||
[copy]
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in new issue