TODO 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. These are the TODO items for the next LFS release (3.0):
  2. * Mention more hints through out the books (like BSD hint before
  3. staring with chapter 7, devfs hint before running MAKEDEV, etc)
  4. * Fix the layout of intel/chapter7/usage.xml
  5. * Consider ftp://ftp.win.tue.nl/pub/linux-local/utils/kbd/
  6. to replace console-tools/console-data
  7. * Try new procps install:
  8. make OPT="$CFLAGS" INCDIRS='-I/usr/include -I.' XSCPT='' install
  9. * When installing Glibc in chapter 6 glibc-build/login/pt_chown isn't
  10. installed (we'll copy manually for now) and the mtrace program isn't
  11. build. Find out why.
  12. * Incorporate LFS FAQ in the book
  13. * Full dependency list. This list isn't a list of "package a depends on
  14. package b", but a list of "package a depends on b and c from
  15. package d"
  16. * Bring the book up to speed with the current FHS specs.
  17. * Mention security patches that can be applied to packages.
  18. * Don't run lilo from inside chroot anymore. This causes severe problems
  19. sometimes including LILO not bootstrapping properly.
  20. * Bring back the PPC book (recreate from scratch using current intel
  21. book) using Jesse McCrosky's notes at
  22. http://download.linuxfromscratch.org/misc/ppc-notes.txt
  23. and the patch to the 'patch' package at:
  24. http://download.linuxfromscratch.org/misc/ppc-patch.patch
  25. * Add descriptions what the patches do we use (like the console-tools and gzip
  26. patches)
  27. * Try out Slackware's MAKEDEV script and see if it's any better than the
  28. currently used one. A copy can be found at
  29. http://download.linuxfromscratch.org/misc/Slackware-MAKEDEV
  30. * Add netkit-base and net-tools to Appendix A.
  31. * Suggest using this command to strip debug symbols after you finish
  32. chapter 6: find $LFS -type f -exec strip --strip-debug '{}' ';'