├── .gitignore ├── .gitmodules ├── LICENSE ├── LICENSE.2 ├── Makefile ├── README.waf ├── benchmarks.c ├── dhrystone_cmd.c ├── filesys.c ├── hello_cmd.c ├── include ├── rki_config.h ├── rtems_config.h └── rtems_net_config.h ├── init.c ├── local_shell_cmds.c ├── nvramdisk.c ├── ramdisk.c ├── readme.asciidoc ├── rootfs ├── etc │ ├── host.conf │ └── hosts └── shell-init ├── rtems_net.c ├── rtems_net_svc.c ├── task_cmd.c ├── whetstone_cmd.c └── wscript /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanc98/rki/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanc98/rki/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanc98/rki/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanc98/rki/HEAD/LICENSE.2 -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanc98/rki/HEAD/Makefile -------------------------------------------------------------------------------- /README.waf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanc98/rki/HEAD/README.waf -------------------------------------------------------------------------------- /benchmarks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanc98/rki/HEAD/benchmarks.c -------------------------------------------------------------------------------- /dhrystone_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanc98/rki/HEAD/dhrystone_cmd.c -------------------------------------------------------------------------------- /filesys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanc98/rki/HEAD/filesys.c -------------------------------------------------------------------------------- /hello_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanc98/rki/HEAD/hello_cmd.c -------------------------------------------------------------------------------- /include/rki_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanc98/rki/HEAD/include/rki_config.h -------------------------------------------------------------------------------- /include/rtems_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanc98/rki/HEAD/include/rtems_config.h -------------------------------------------------------------------------------- /include/rtems_net_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanc98/rki/HEAD/include/rtems_net_config.h -------------------------------------------------------------------------------- /init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanc98/rki/HEAD/init.c -------------------------------------------------------------------------------- /local_shell_cmds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanc98/rki/HEAD/local_shell_cmds.c -------------------------------------------------------------------------------- /nvramdisk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanc98/rki/HEAD/nvramdisk.c -------------------------------------------------------------------------------- /ramdisk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanc98/rki/HEAD/ramdisk.c -------------------------------------------------------------------------------- /readme.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanc98/rki/HEAD/readme.asciidoc -------------------------------------------------------------------------------- /rootfs/etc/host.conf: -------------------------------------------------------------------------------- 1 | order hosts, bind 2 | -------------------------------------------------------------------------------- /rootfs/etc/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanc98/rki/HEAD/rootfs/etc/hosts -------------------------------------------------------------------------------- /rootfs/shell-init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanc98/rki/HEAD/rootfs/shell-init -------------------------------------------------------------------------------- /rtems_net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanc98/rki/HEAD/rtems_net.c -------------------------------------------------------------------------------- /rtems_net_svc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanc98/rki/HEAD/rtems_net_svc.c -------------------------------------------------------------------------------- /task_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanc98/rki/HEAD/task_cmd.c -------------------------------------------------------------------------------- /whetstone_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanc98/rki/HEAD/whetstone_cmd.c -------------------------------------------------------------------------------- /wscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanc98/rki/HEAD/wscript --------------------------------------------------------------------------------