I have a problem.
I want to append an opkg feed source to the existing /etc/opkg/distfeeds.conf file in a build.
The problem is that I would need to be able to generate the /etc/opkg/distfeeds.conf file before an actual image build.
It looks like this file is generated in package/base-files/Makefile via FeedSourcesAppend, which is in include/feeds.mk.
I either need to create a file in /files which will overwrite the image-generated file.
OR break up the "make world" process to do this somewhere in the middle of the build, but that sounds like a huge PITA.
OR I could just modify the existing Makefiles, but I really don't want to modify source to do this.
This is all because customfeeds.conf is read before distfeeds.conf, and anything in distfeeds.conf takes priority, otherwise I could just stick my package source in there instead.
Any ideas?