Matthew Burgess wrote:
With that in mind, we'd appreciate feedback on the attached config file especially if you've tested it "in the field" and found that we broke something! Errors and omissions expected :)
As I understand it A==B is a test to see whether A is the same as B but A=B means A will be assigned the same value as B With that in mind, all of the instances of KERNEL= should be changed to KERNEL== because they're all tests to see what the kernel name is. All the MODE== should be MODE= because you're not testing anything, you're assigning a specific set of permissions. Same with GROUP==, it should be GROUP= because you're not testing, you're assigning. BUS= should be BUS== because you're testing, not assigning. You can't assign a device to a different bus. = will still work as a test but it's use is deprecated. -- http://linuxfromscratch.org/mailman/listinfo/lfs-dev FAQ: http://www.linuxfromscratch.org/faq/ Unsubscribe: See the above information page