TODO 1.9 KB

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