Currently, we are copying from /usr/src/sys/amd64/conf/GENERIC.hints to /boot/device.hints manually. I think better to install it automatically.
Created attachment 356066 [details, diff] sample patch for boot0-9.2_rc1.ebuild Please remove part of CONFIG_PROTECT if you think not needed.
not sure if the CONFIG_PROTECT is needed; for sure I wouldn't need it :) if someone does not change it, this will have the same end result and if someone does he will appreciate it I think so I'm inclined to keep it.
(In reply to Alexis Ballier from comment #2) > not sure if the CONFIG_PROTECT is needed; for sure I wouldn't need it :) > if someone does not change it, this will have the same end result and if > someone does he will appreciate it I think so I'm inclined to keep it. When user has special hardware, it is necessary to edit /boot/device.hints. Change IRQ number of serial port, ACPI disabled, etc .... GENERIC.hints is sample resource hints file. When CONFIG_PROTECT is not set, it is always overwritten. I think that can be updated more safely by setting CONFIG_PROTECT. details please see FreeBSD's man page. http://www.freebsd.org/cgi/man.cgi?query=device.hints&sektion=5
applied, thanks!