1. 10 4月, 2014 2 次提交
    • G
      scons: no need to set RTT_ROOT as Repository · 81b284b3
      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.
      81b284b3
    • G
      scons: seperate the BSP build with the kernel build · a03816ef
      Grissiom 提交于
      BSPs could have their own components/ etc. If they point to the same
      folder, SCons would find the wrong source code to compile.
      a03816ef
  2. 09 4月, 2014 3 次提交
  3. 08 4月, 2014 5 次提交
  4. 07 4月, 2014 4 次提交
  5. 03 4月, 2014 2 次提交
  6. 02 4月, 2014 2 次提交
  7. 29 3月, 2014 4 次提交
  8. 27 3月, 2014 3 次提交
    • B
      Merge pull request #249 from grissiom/msh-next · 96d9fd87
      Bernard Xiong 提交于
      Msh next
      96d9fd87
    • G
      [msh] cd to path when possible · c44f32e5
      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.
      c44f32e5
    • G
      [msh] try to complete module path · f9659283
      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.
      f9659283
  9. 25 3月, 2014 1 次提交
  10. 24 3月, 2014 2 次提交
  11. 23 3月, 2014 1 次提交
  12. 12 3月, 2014 3 次提交
  13. 11 3月, 2014 4 次提交
  14. 10 3月, 2014 2 次提交
  15. 04 3月, 2014 2 次提交