| Submitter | Sonic Zhang |
|---|---|
| Date | Aug. 7, 2012, 9:09 a.m. |
| Message ID | <1344330577-25159-3-git-send-email-sonic.adi@gmail.com> |
| Download | mbox | patch |
| Permalink | /patch/175546/ |
| State | Rejected |
| Headers | show |
Comments
Le Tue, 7 Aug 2012 17:09:35 +0800, Sonic Zhang <sonic.adi@gmail.com> a écrit : > +KERNELVERSION=$(shell cat $(LINUX_SOURCE_DIR)/Makefile | awk 'BEGIN { FS = " *= *" } NF != 2 { next } $$1 == "VERSION" { maj = $$2} $$1 == "PATCHLEVEL" { mid = $$2 } $$1 == "SUBLEVEL" { mic = $$2 } END {print maj "." mid "." mic}') This sounds horribly fragile. > ifeq ($(BR2_LINUX_KERNEL_USE_INTREE_DTS),y) > KERNEL_DTS_NAME = $(BR2_LINUX_KERNEL_INTREE_DTS_NAME) > else ifeq ($(BR2_LINUX_KERNEL_USE_CUSTOM_DTS),y) > @@ -149,7 +151,7 @@ define LINUX_APPLY_PATCHES > if echo $$p | grep -q -E "^ftp://|^http://" ; then \ > support/scripts/apply-patches.sh $(LINUX_SOURCE_DIR) $(DL_DIR) `basename $$p` ; \ > elif test -d $$p ; then \ > - support/scripts/apply-patches.sh $(LINUX_SOURCE_DIR) $$p linux-\*.patch ; \ > + support/scripts/apply-patches.sh $(LINUX_SOURCE_DIR) $$p linux-$(KERNELVERSION)-\*.patch ; \ Generally, we want to move away from patches having a version number in their name. For the packages for which multiple versions are supported, the patches should be organized in subdirectories named after the version. So instead of this patch, just organize your kernel patches in directories named linux-patches-3.2/, linux-patches-3.4/, etc. Best regards, Thomas
On Sun, Aug 12, 2012 at 2:08 AM, Thomas Petazzoni <thomas.petazzoni@free-electrons.com> wrote: > Le Tue, 7 Aug 2012 17:09:35 +0800, > Sonic Zhang <sonic.adi@gmail.com> a écrit : > >> +KERNELVERSION=$(shell cat $(LINUX_SOURCE_DIR)/Makefile | awk 'BEGIN { FS = " *= *" } NF != 2 { next } $$1 == "VERSION" { maj = $$2} $$1 == "PATCHLEVEL" { mid = $$2 } $$1 == "SUBLEVEL" { mic = $$2 } END {print maj "." mid "." mic}') > > This sounds horribly fragile. > >> ifeq ($(BR2_LINUX_KERNEL_USE_INTREE_DTS),y) >> KERNEL_DTS_NAME = $(BR2_LINUX_KERNEL_INTREE_DTS_NAME) >> else ifeq ($(BR2_LINUX_KERNEL_USE_CUSTOM_DTS),y) >> @@ -149,7 +151,7 @@ define LINUX_APPLY_PATCHES >> if echo $$p | grep -q -E "^ftp://|^http://" ; then \ >> support/scripts/apply-patches.sh $(LINUX_SOURCE_DIR) $(DL_DIR) `basename $$p` ; \ >> elif test -d $$p ; then \ >> - support/scripts/apply-patches.sh $(LINUX_SOURCE_DIR) $$p linux-\*.patch ; \ >> + support/scripts/apply-patches.sh $(LINUX_SOURCE_DIR) $$p linux-$(KERNELVERSION)-\*.patch ; \ > > Generally, we want to move away from patches having a version number in > their name. For the packages for which multiple versions are supported, > the patches should be organized in subdirectories named after the > version. So instead of this patch, just organize your kernel patches in > directories named linux-patches-3.2/, linux-patches-3.4/, etc. > This fine. Sonic
Patch
diff --git a/linux/linux.mk b/linux/linux.mk index 2e0671b..48021a1 100644 --- a/linux/linux.mk +++ b/linux/linux.mk @@ -64,6 +64,8 @@ endif # going to be installed in the target filesystem. LINUX_VERSION_PROBED = $(shell $(MAKE) $(LINUX_MAKE_FLAGS) -C $(LINUX_SOURCE_DIR) --no-print-directory -s kernelrelease) +KERNELVERSION=$(shell cat $(LINUX_SOURCE_DIR)/Makefile | awk 'BEGIN { FS = " *= *" } NF != 2 { next } $$1 == "VERSION" { maj = $$2} $$1 == "PATCHLEVEL" { mid = $$2 } $$1 == "SUBLEVEL" { mic = $$2 } END {print maj "." mid "." mic}') + ifeq ($(BR2_LINUX_KERNEL_USE_INTREE_DTS),y) KERNEL_DTS_NAME = $(BR2_LINUX_KERNEL_INTREE_DTS_NAME) else ifeq ($(BR2_LINUX_KERNEL_USE_CUSTOM_DTS),y) @@ -149,7 +151,7 @@ define LINUX_APPLY_PATCHES if echo $$p | grep -q -E "^ftp://|^http://" ; then \ support/scripts/apply-patches.sh $(LINUX_SOURCE_DIR) $(DL_DIR) `basename $$p` ; \ elif test -d $$p ; then \ - support/scripts/apply-patches.sh $(LINUX_SOURCE_DIR) $$p linux-\*.patch ; \ + support/scripts/apply-patches.sh $(LINUX_SOURCE_DIR) $$p linux-$(KERNELVERSION)-\*.patch ; \ else \ support/scripts/apply-patches.sh $(LINUX_SOURCE_DIR) `dirname $$p` `basename $$p` ; \ fi \