1
0

README 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. Openwrt inside a user mode linux. Why would we even want this many ask?
  2. There are potentially a lot of reasons, one obvious one to me, it allows
  3. folks to 'kick the tires' without actually flashing up any hardware. It's
  4. also a great environment for porting over packages, you can get a package
  5. fully functional in the uclibc root environment inside a uml without actually
  6. disturbing your 'real router', and then rebuild for a specific target once
  7. it's fully tested.
  8. This is a first stab at a build that 'just works' and there will be more
  9. cleanup to come. The simple directions are:-
  10. Configure for uml target
  11. Configure with an ext4 root file system
  12. build it all
  13. In your bin directory you will find a kernel and an ext4 root file system
  14. when it's finished. Just run it like this:-
  15. bin/uml/openwrt-uml-vmlinux ubd0=bin/uml/openwrt-uml-ext4.img
  16. The uml will start, and eventually the serial console of the uml will be at your
  17. console prompt. If you would like it in xterms, substitute con=xterm and con0=xterm.
  18. No networking is configured, but, it's a starting point. The resulting file system
  19. has just enough free space to start kicking the tires and playing in the world of
  20. 'embedded routers' along with all the resource restrictions that come with that
  21. world.
  22. To configure networking and more, refer to the user mode linux documentation online.
  23. A quick start goes along this line. install the uml-utilities packages so you have
  24. the uml switch in and running, then add a command param to your uml start like this
  25. eth0=daemon,00:01:01:01:01:01,unix,/<your uml switch control socket here>
  26. With that in, and uml networking actually functional (can be a challenge at times),
  27. you should be able to ifconfig the interface and talk to the host side, or, if you
  28. bridged the uml switch to your host network, you should be able to run udhcp and be
  29. away with networking off to the world. Again, if you are unfamiliar with uml and
  30. uml networking, please read the docs and how-to stuff available on the net. It does
  31. take some fiddling to get it started and working right the first time, but after that,
  32. it opens up a whole new world of virtual machines.
  33. http://user-mode-linux.sourceforge.net/