- 20 4月, 2014 1 次提交
-
-
由 bernard 提交于
-
- 13 4月, 2014 1 次提交
-
-
由 Bernard Xiong 提交于
Misc fix
-
- 12 4月, 2014 6 次提交
-
-
由 Grissiom 提交于
-
由 Grissiom 提交于
The ptr is set in the following code. So remove the first one.
-
由 Grissiom 提交于
The digit in octal numbers should with in 0~7. Check on it in token_proc_number. This issue is found by Clang.
-
由 Grissiom 提交于
-
由 Grissiom 提交于
Clang complains about "Null pointer argument in call to string comparison function". So assert on it.
-
由 Grissiom 提交于
Fix some "unused variable" and "used before set" warnings.
-
- 11 4月, 2014 1 次提交
-
-
由 Bernard Xiong 提交于
Fix scons
-
- 10 4月, 2014 6 次提交
-
-
由 Bernard Xiong 提交于
Logtrace next
-
由 Grissiom 提交于
log_session_lvl is suitable for performance critical places where in most cases, the log is turned off by level. If the session is const and the level is greater than session->lvl, the whole function will be optimized out.
-
由 Grissiom 提交于
Compiler may do more optimization when the parameter is const.
-
由 Bernard Xiong 提交于
[USB]fix rt_usbd_set_config() BUG which set the USB device to configurat...
-
由 Grissiom 提交于
In SCons manual: ================= In order to inform the C compiler about the repositories, SCons will add appropriate -I flags to the compilation commands for each directory in the $CPPPATH list. So if we add the current directory to the construction environment $CPPPATH like so: env = Environment(CPPPATH = ['.']) env.Program('hello.c') Repository('/usr/repository1') Then re-executing SCons yields: % scons -Q cc -o hello.o -c -I. -I/usr/repository1 hello.c cc -o hello hello.o ================= The additional include directory is definitely not what we want. Just remove the additional Repository line.
-
由 Grissiom 提交于
BSPs could have their own components/ etc. If they point to the same folder, SCons would find the wrong source code to compile.
-
- 09 4月, 2014 3 次提交
-
-
由 Bernard Xiong 提交于
update MSH ifconfig and add MSH netstat.
-
由 wuyangyong 提交于
-
由 wuyangyong 提交于
-
- 08 4月, 2014 5 次提交
-
-
由 Bernard Xiong 提交于
[shell] define FINSH_PROMPT as finsh_get_prompt when FINSH_USING_MSH enabled
-
由 Grissiom 提交于
When MSH enabled, the prompt will change at the two shells. So we should use dynamic prompt when FINSH_USING_MSH defined.
-
由 Bernard Xiong 提交于
Qemu realview vmm
-
由 Grissiom 提交于
When RT-Thread is running stand alone, it forgot to enable the distributor of GIC.
-
由 Grissiom 提交于
This piece of code will enable the interrupt early before switching to the first thread. Although it is harmless, but not prefect.
-
- 07 4月, 2014 4 次提交
-
-
由 Bernard Xiong 提交于
Qemu realview vmm
-
由 Grissiom 提交于
-
由 Grissiom 提交于
-
由 Grissiom 提交于
-
- 06 4月, 2014 1 次提交
-
-
由 weety 提交于
[USB]fix rt_usbd_set_config() BUG which set the USB device to configuration state before enumerating the device.
-
- 03 4月, 2014 2 次提交
-
-
由 Bernard Xiong 提交于
[vmm] add realview-pb-a8 VMM support
-
由 Grissiom 提交于
-
- 02 4月, 2014 2 次提交
- 29 3月, 2014 4 次提交
-
-
由 Bernard Xiong 提交于
-
由 Bernard Xiong 提交于
[msh] don't complain on empty command
-
由 Grissiom 提交于
Just branch out and no complain on command length == 0;
-
由 bernard 提交于
-
- 27 3月, 2014 3 次提交
-
-
由 Bernard Xiong 提交于
Msh next
-
由 Grissiom 提交于
When DFS_USING_WORKDIR is enabled, msh will try to chdir if the command is not found. For example, if there is folder named "SD", and there is no `SD` command and `SD.mo` module, typing "SD" in msh will cd to the folder. In more detail, the execution order right now is: 1. built-in command 2. module 3. cd to path If you have a folder named "ps", you have to run `cd ps` to change the working dir.
-
由 Grissiom 提交于
Msh can execute module directly. So try to auto-complete the path when user press TAB. There is a chance that the path is a module.
-
- 25 3月, 2014 1 次提交
-
-
由 bernard 提交于
-