From mboxrd@z Thu Jan 1 00:00:00 1970 From: Romain Naour Date: Sun, 15 Mar 2015 15:59:07 +0100 Subject: [Buildroot] [PATCH 1/7] linux: use the package infrastructure to download patches In-Reply-To: <1425147313-17380-2-git-send-email-thomas.petazzoni@free-electrons.com> References: <1425147313-17380-1-git-send-email-thomas.petazzoni@free-electrons.com> <1425147313-17380-2-git-send-email-thomas.petazzoni@free-electrons.com> Message-ID: <55059E3B.70108@openwide.fr> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: buildroot@busybox.net Hello Thomas, [snip] > +define LINUX_APPLY_LOCAL_PATCHES > + for p in $(filter-out ftp://% http://% https://%,$(LINUX_PATCHES)) ; do \ > + if test -d $$p ; then \ > $(APPLY_PATCHES) $(@D) $$p linux-\*.patch ; \ [snip] I know, it's not related to your patch but linux patches doesn't follow the new naming convention here. Do we want to keep the "linux-" prefix since linux is not really a package or get rid of it ? It would be convenient to use linux patches generated by git format-patch command like for other packages. Best regards, Romain