[BACK]Return to TODO CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / sys / rump

File: [cvs.NetBSD.org] / src / sys / rump / TODO (download)

Revision 1.8.4.2, Thu May 22 11:41:11 2014 UTC (9 years, 10 months ago) by yamt
Branch: yamt-pagecache
Changes since 1.8.4.1: +3 -5 lines

sync with head.

for a reference, the tree before this commit was tagged
as yamt-pagecache-tag8.

this commit was splitted into small chunks to avoid
a limitation of cvs.  ("Protocol error: too many arguments")

	$NetBSD: TODO,v 1.8.4.2 2014/05/22 11:41:11 yamt Exp $

* integrate build framework with config(1) to stop the need to
  maintain a separate build infrastructure.  the remaining step
  is to rewrite the Makefiles to use  source file lists generated
  with config(1) (where possible)
  + this will also benefit kernel modules
  + the patch to config(1) exists but is not in-tree.  remaining work is
    modifications to files.*
* find a better solution for rumpdefs.h, the sed "solution"
  doesn't really scale nicely
  + everything except deeply embedded (i.e. small) can use:
    http://github.com/justincormack/rumprun
* the .a semantics do not make sense for rump kernel components.
  additionally, they cannot be loaded as modules since they are
  ar's instead of elf objects.  make the build produce and use elf
  objects instead of archives
* cleanup remaining uses of __ in the kernel
* rump_syscalls.c in librump should be compiled in the client
  namespace, not the rump kernel namespace.  while technically trivial,
  the build system makes this quite difficult.  one option for "cheating"
  would be to put it into librumpuser which is always available for
  local clients (per definition of local client).
* add autoconf support to librumpuser to clean up the #ifdef acrobatics
  and fix some of the issues that cannot be handled purely with static
  ifdefs (autoconf to be used for non-native builds only)