TODO 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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. * Explain how changing runlevels works. Use the file written by Simon
  16. Perreault at http://download.linuxfromscratch.org/misc/runlevels.txt
  17. * Don't run lilo from inside chroot anymore. This causes severe problems
  18. sometimes including LILO not bootstrapping properly.
  19. * Bring back the PPC book (recreate from scratch using current intel
  20. book) using Jesse McCrosky's notes at
  21. http://download.linuxfromscratch.org/misc/ppc-notes.txt
  22. and the patch to the 'patch' package at:
  23. http://download.linuxfromscratch.org/misc/ppc-patch.patch
  24. * Add descriptions what the patches do we use (like the console-tools and gzip
  25. patches)
  26. * Try out Slackware's MAKEDEV script and see if it's any better than the
  27. currently used one. A copy can be found at
  28. http://download.linuxfromscratch.org/misc/Slackware-MAKEDEV
  29. * Sed'ing the MAKEDEV script gives us hda[1-20], hdb[1-20] and so forth.
  30. Mention that all of these can't actually be used due to kernel
  31. limitations (IDE goes to 16 max for example).
  32. * Mention LFS should be installed as user root
  33. * Add netkit-base and net-tools to Appendix A.
  34. * Suggest using this command to strip debug symbols after you finish
  35. chapter 6: find $LFS -type f -exec strip --strip-debug '{}' ';'