]> code.ossystems Code Review - meta-freescale.git/commitdiff
linux-imx-headers: Update to version 4.19.35
authorCristinel Panfir <cristinel.panfir@nxp.com>
Mon, 2 Dec 2019 13:36:29 +0000 (15:36 +0200)
committerOtavio Salvador <otavio@ossystems.com.br>
Tue, 3 Dec 2019 14:52:54 +0000 (11:52 -0300)
Signed-off-by: Cristinel Panfir <cristinel.panfir@nxp.com>
recipes-kernel/linux/linux-imx-headers_4.14.98.bb [deleted file]
recipes-kernel/linux/linux-imx-headers_4.19.35.bb [new file with mode: 0644]

diff --git a/recipes-kernel/linux/linux-imx-headers_4.14.98.bb b/recipes-kernel/linux/linux-imx-headers_4.14.98.bb
deleted file mode 100644 (file)
index e55a795..0000000
+++ /dev/null
@@ -1,57 +0,0 @@
-# Copyright 2017-2018 NXP
-# Released under the MIT license (see COPYING.MIT for the terms)
-
-SUMMARY = "Installs i.MX-specific kernel headers"
-DESCRIPTION = "Installs i.MX-specific kernel headers to userspace. \
-New headers are installed in ${includedir}/imx."
-LICENSE = "GPLv2"
-LIC_FILES_CHKSUM = "file://COPYING;md5=d7810fab7487fb0aad327b76f1be7cd7"
-
-SRCBRANCH = "imx_4.14.98_2.0.0_ga"
-LOCALVERSION = "-imx"
-SRC_URI = "git://source.codeaurora.org/external/imx/linux-imx.git;protocol=https;branch=${SRCBRANCH}"
-SRCREV = "dfc78102d29f81d9316b281a3b8af3dff95174c8"
-
-S = "${WORKDIR}/git"
-
-do_compile[noexec] = "1"
-
-IMX_UAPI_HEADERS = " \
-    dma-buf.h \
-    hantrodec.h \
-    hx280enc.h \
-    ion.h \
-    ipu.h \
-    isl29023.h \
-    mxc_asrc.h \
-    mxc_dcic.h \
-    mxc_mlb.h \
-    mxc_sim_interface.h \
-    mxc_v4l2.h \
-    mxcfb.h \
-    pxp_device.h \
-    pxp_dma.h \
-    videodev2.h \
-"
-
-do_install() {
-    # We install all headers inside of B so we can copy only the
-    # whitelisted ones, and there is no risk of a new header to be
-    # installed by mistake.
-    oe_runmake headers_install INSTALL_HDR_PATH=${B}${exec_prefix}
-
-    # FIXME: The ion.h is still on staging so "promote" it for now
-    cp ${S}/drivers/staging/android/uapi/ion.h ${B}${includedir}/linux
-
-    # Install whitelisted headers only
-    for h in ${IMX_UAPI_HEADERS}; do
-        install -D -m 0644 ${B}${includedir}/linux/$h \
-                          ${D}${includedir}/imx/linux/$h
-    done
-}
-
-ALLOW_EMPTY_${PN} = "1"
-
-PACKAGE_ARCH = "${MACHINE_SOCARCH}"
-COMPATIBLE_HOST_imx = ".*"
-COMPATIBLE_HOST ?= "(none)"
diff --git a/recipes-kernel/linux/linux-imx-headers_4.19.35.bb b/recipes-kernel/linux/linux-imx-headers_4.19.35.bb
new file mode 100644 (file)
index 0000000..5d1b1a2
--- /dev/null
@@ -0,0 +1,57 @@
+# Copyright 2017-20189 NXP                                                       
+# Released under the MIT license (see COPYING.MIT for the terms)                
+                                                                                
+SUMMARY = "Installs i.MX-specific kernel headers"                               
+DESCRIPTION = "Installs i.MX-specific kernel headers to userspace. \            
+New headers are installed in ${includedir}/imx."                                
+LICENSE = "GPLv2"                                                               
+LIC_FILES_CHKSUM = "file://COPYING;md5=d7810fab7487fb0aad327b76f1be7cd7"        
+                                                                                
+SRCBRANCH = "imx_4.19.35_1.1.0"                                              
+LOCALVERSION = "-1.1.0"                                                           
+SRC_URI = "git://source.codeaurora.org/external/imx/linux-imx.git;protocol=https;branch=${SRCBRANCH}"
+SRCREV = "a51dda8feec03e8c675230786d64ee050944dbfd"                             
+                                                                                
+S = "${WORKDIR}/git"                                                            
+                                                                                
+do_compile[noexec] = "1"                                                        
+                                                                                
+IMX_UAPI_HEADERS = " \                                                          
+    dma-buf.h \                                                                 
+    hantrodec.h \                                                               
+    hx280enc.h \                                                                
+    ion.h \                                                                     
+    ipu.h \                                                                     
+    isl29023.h \                                                                
+    mxc_asrc.h \                                                                
+    mxc_dcic.h \                                                                
+    mxc_mlb.h \                                                                 
+    mxc_sim_interface.h \                                                       
+    mxc_v4l2.h \                                                                
+    mxcfb.h \                                                                   
+    pxp_device.h \                                                              
+    pxp_dma.h \                                                                 
+    videodev2.h \                                                               
+"                                                                               
+                                                                                
+do_install() {                                                                  
+    # We install all headers inside of B so we can copy only the                
+    # whitelisted ones, and there is no risk of a new header to be              
+    # installed by mistake.                                                     
+    oe_runmake headers_install INSTALL_HDR_PATH=${B}${exec_prefix}              
+                                                                                
+    # FIXME: The ion.h is still on staging so "promote" it for now              
+    cp ${S}/drivers/staging/android/uapi/ion.h ${B}${includedir}/linux          
+                                                                                
+    # Install whitelisted headers only                                          
+    for h in ${IMX_UAPI_HEADERS}; do                                            
+        install -D -m 0644 ${B}${includedir}/linux/$h \                         
+                       ${D}${includedir}/imx/linux/$h                           
+    done                                                                        
+}                                                                               
+                                                                                
+ALLOW_EMPTY_${PN} = "1"                                                         
+                                                                                
+PACKAGE_ARCH = "${MACHINE_SOCARCH}"                                             
+COMPATIBLE_HOST_imx = ".*"                                                      
+COMPATIBLE_HOST ?= "(none)"