John Williams wrote: > I've found that if you change the busybox config, you have to rebuild it > (make user_only) *twice* before doing a make romfs, to ensure all new > applets are built and properly symlinked. Never taken the time to > figure out why, just a gotcha. > > Anyone else seen this?
Last time I looked, (Busybox-1.00), it's because of a bug in Busybox's Makefile. It tries to create dependency files for each CONFIG_ option, just like the Linux kernel does. If that worked, changing the config would trigger a recompile of only those files which are affected by the option changes, which would be perfect. But it doesn't work because a path is wrong somewhere in the Makefile. -- Jamie _______________________________________________ uClinux-dev mailing list [email protected] http://mailman.uclinux.org/mailman/listinfo/uclinux-dev This message was resent by [email protected] To unsubscribe see: http://mailman.uclinux.org/mailman/options/uclinux-dev
