TODO 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. These are the TODO items for the next LFS release (3.0):
  2. * Consider ftp://ftp.win.tue.nl/pub/linux-local/utils/kbd/
  3. to replace console-tools/console-data
  4. * Try new procps install:
  5. make OPT="$CFLAGS" INCDIRS='-I/usr/include -I.' XSCPT='' install
  6. * When installing Glibc in chapter 6 glibc-build/login/pt_chown isn't
  7. installed (we'll copy manually for now) and the mtrace program isn't
  8. build. Find out why.
  9. * Incorporate LFS FAQ in the book
  10. * Full dependency list. This list isn't a list of "package a depends on
  11. package b", but a list of "package a depends on b and c from
  12. package d"
  13. * Bring the book up to speed with the current FHS specs.
  14. * Mention security patches that can be applied to packages.
  15. * At the end of the book suggest the user create the /etc/lfs-<version>
  16. file and give a few reasons why the user would want
  17. such a file (example: it's easy to forget after a while which LFS version
  18. you run; it makes debugging easier for us knowing which LFS version a user
  19. is running).
  20. * Explain how changing runlevels works. Use the file written by Simon
  21. Perreault at http://download.linuxfromscratch.org/misc/runlevels.txt
  22. * Don't run lilo from inside chroot anymore. This causes severe problems
  23. sometimes including LILO not bootstrapping properly.
  24. * Bring back the PPC book (recreate from scratch using current intel
  25. book) using Jesse McCrosky's notes at
  26. http://download.linuxfromscratch.org/misc/ppc-notes.txt
  27. and the patch to the 'patch' package at:
  28. http://download.linuxfromscratch.org/misc/ppc-patch.patch
  29. * Add descriptions what the patches do we use (like the console-tools and gzip
  30. patches)
  31. * Try out Slackware's MAKEDEV script and see if it's any better than the
  32. currently used one. A copy can be found at
  33. http://download.linuxfromscratch.org/misc/Slackware-MAKEDEV
  34. * Sed'ing the MAKEDEV script gives us hda[1-20], hdb[1-20] and so forth.
  35. Mention that all of these can't actually be used due to kernel
  36. limitations (IDE goes to 16 max for example).
  37. * Mention LFS should be installed as user root
  38. * Add netkit-base and net-tools to Appendix A.
  39. * Suggest using this command to strip debug symbols after you finish
  40. chapter 6: find $LFS -type f -exec strip --strip-debug '{}' ';'