All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-fsl-arm PATCH 1/4] linux-imx (3.0.35): Enable tracing support so lttng's modules are build
@ 2013-07-02 19:34 Otavio Salvador
  2013-07-02 19:34 ` [meta-fsl-arm PATCH 2/4] linux-imx (2.6.35.3): " Otavio Salvador
                   ` (3 more replies)
  0 siblings, 4 replies; 10+ messages in thread
From: Otavio Salvador @ 2013-07-02 19:34 UTC (permalink / raw)
  To: meta-freescale Mailing List; +Cc: Otavio Salvador

lttng support is enabled in Freescale test images however its modules
were not being build due lacking of tracing support in the
kernel. This patch enables the needed kernel features to allow the
modules to be build and thus making lttng usable.

Change-Id: Ifa5fd3a5206502d8b100ce6211d2cbb69b9c6f3b
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
---
 recipes-kernel/linux/linux-imx-3.0.35/mx6dl/defconfig | 5 ++++-
 recipes-kernel/linux/linux-imx-3.0.35/mx6q/defconfig  | 4 ++++
 recipes-kernel/linux/linux-imx-3.0.35/mx6sl/defconfig | 5 +++++
 3 files changed, 13 insertions(+), 1 deletion(-)

diff --git a/recipes-kernel/linux/linux-imx-3.0.35/mx6dl/defconfig b/recipes-kernel/linux/linux-imx-3.0.35/mx6dl/defconfig
index 7193921..d709519 100644
--- a/recipes-kernel/linux/linux-imx-3.0.35/mx6dl/defconfig
+++ b/recipes-kernel/linux/linux-imx-3.0.35/mx6dl/defconfig
@@ -6,6 +6,7 @@ CONFIG_LOG_BUF_SHIFT=14
 CONFIG_CGROUPS=y
 CONFIG_EMBEDDED=y
 CONFIG_PERF_EVENTS=y
+CONFIG_KPROBES=y
 CONFIG_MODULES=y
 CONFIG_MODULE_UNLOAD=y
 CONFIG_MODULE_FORCE_UNLOAD=y
@@ -19,6 +20,7 @@ CONFIG_MACH_MX6Q_ARM2=y
 CONFIG_MACH_MX6Q_SABRELITE=y
 CONFIG_MACH_MX6Q_SABRESD=y
 CONFIG_MACH_MX6Q_SABREAUTO=y
+CONFIG_MACH_MX6Q_HDMIDONGLE=y
 CONFIG_USB_EHCI_ARC_H1=y
 CONFIG_USB_FSL_ARC_OTG=y
 CONFIG_MXC_PWM=y
@@ -278,8 +280,9 @@ CONFIG_NLS_ASCII=m
 CONFIG_NLS_ISO8859_1=y
 CONFIG_NLS_UTF8=m
 CONFIG_MAGIC_SYSRQ=y
-CONFIG_DEBUG_FS=y
 CONFIG_SYSCTL_SYSCALL_CHECK=y
+# CONFIG_EVENT_POWER_TRACING_DEPRECATED is not set
+CONFIG_FTRACE=y
 # CONFIG_CRYPTO_MANAGER_DISABLE_TESTS is not set
 CONFIG_CRYPTO_TEST=m
 CONFIG_CRYPTO_CCM=y
diff --git a/recipes-kernel/linux/linux-imx-3.0.35/mx6q/defconfig b/recipes-kernel/linux/linux-imx-3.0.35/mx6q/defconfig
index 7193921..542e949 100644
--- a/recipes-kernel/linux/linux-imx-3.0.35/mx6q/defconfig
+++ b/recipes-kernel/linux/linux-imx-3.0.35/mx6q/defconfig
@@ -6,6 +6,7 @@ CONFIG_LOG_BUF_SHIFT=14
 CONFIG_CGROUPS=y
 CONFIG_EMBEDDED=y
 CONFIG_PERF_EVENTS=y
+CONFIG_KPROBES=y
 CONFIG_MODULES=y
 CONFIG_MODULE_UNLOAD=y
 CONFIG_MODULE_FORCE_UNLOAD=y
@@ -19,6 +20,7 @@ CONFIG_MACH_MX6Q_ARM2=y
 CONFIG_MACH_MX6Q_SABRELITE=y
 CONFIG_MACH_MX6Q_SABRESD=y
 CONFIG_MACH_MX6Q_SABREAUTO=y
+CONFIG_MACH_MX6Q_HDMIDONGLE=y
 CONFIG_USB_EHCI_ARC_H1=y
 CONFIG_USB_FSL_ARC_OTG=y
 CONFIG_MXC_PWM=y
@@ -280,6 +282,8 @@ CONFIG_NLS_UTF8=m
 CONFIG_MAGIC_SYSRQ=y
 CONFIG_DEBUG_FS=y
 CONFIG_SYSCTL_SYSCALL_CHECK=y
+# CONFIG_EVENT_POWER_TRACING_DEPRECATED is not set
+CONFIG_FTRACE=y
 # CONFIG_CRYPTO_MANAGER_DISABLE_TESTS is not set
 CONFIG_CRYPTO_TEST=m
 CONFIG_CRYPTO_CCM=y
diff --git a/recipes-kernel/linux/linux-imx-3.0.35/mx6sl/defconfig b/recipes-kernel/linux/linux-imx-3.0.35/mx6sl/defconfig
index 5bb9666..b8f88f7 100644
--- a/recipes-kernel/linux/linux-imx-3.0.35/mx6sl/defconfig
+++ b/recipes-kernel/linux/linux-imx-3.0.35/mx6sl/defconfig
@@ -4,8 +4,10 @@ CONFIG_SYSVIPC=y
 CONFIG_IKCONFIG=y
 CONFIG_IKCONFIG_PROC=y
 CONFIG_LOG_BUF_SHIFT=14
+CONFIG_CGROUPS=y
 CONFIG_EMBEDDED=y
 CONFIG_PERF_EVENTS=y
+CONFIG_KPROBES=y
 CONFIG_MODULES=y
 CONFIG_MODULE_UNLOAD=y
 CONFIG_MODULE_FORCE_UNLOAD=y
@@ -61,6 +63,8 @@ CONFIG_IP_PNP_DHCP=y
 CONFIG_IP_PNP_BOOTP=y
 # CONFIG_INET_LRO is not set
 # CONFIG_IPV6 is not set
+CONFIG_NETFILTER=y
+CONFIG_LLC2=y
 CONFIG_CAN=y
 CONFIG_CAN_RAW=y
 CONFIG_CAN_BCM=y
@@ -254,6 +258,7 @@ CONFIG_NLS_ISO8859_1=y
 CONFIG_NLS_UTF8=m
 CONFIG_DEBUG_FS=y
 CONFIG_SYSCTL_SYSCALL_CHECK=y
+CONFIG_FTRACE=y
 CONFIG_CRYPTO_AUTHENC=m
 CONFIG_CRYPTO_TEST=m
 CONFIG_CRYPTO_CBC=y
-- 
1.8.3.1



^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [meta-fsl-arm PATCH 2/4] linux-imx (2.6.35.3): Enable tracing support so lttng's modules are build
  2013-07-02 19:34 [meta-fsl-arm PATCH 1/4] linux-imx (3.0.35): Enable tracing support so lttng's modules are build Otavio Salvador
@ 2013-07-02 19:34 ` Otavio Salvador
  2013-07-02 19:34 ` [meta-fsl-arm PATCH 3/4] u-boot-fslc: Update to 2013.07-rc2 release Otavio Salvador
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 10+ messages in thread
From: Otavio Salvador @ 2013-07-02 19:34 UTC (permalink / raw)
  To: meta-freescale Mailing List; +Cc: Otavio Salvador

lttng support is enabled in Freescale test images however its modules
were not being build due lacking of tracing support in the
kernel. This patch enables the needed kernel features to allow the
modules to be build and thus making lttng usable.

Change-Id: I22362e62e4ec077bbc35366cb5ac86ea1a4c5f5f
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
---
 .../linux/linux-imx-2.6.35.3/imx28evk/defconfig    | 90 +++++++++++++++++-----
 .../linux/linux-imx-2.6.35.3/mx5/defconfig         | 25 +++++-
 2 files changed, 90 insertions(+), 25 deletions(-)

diff --git a/recipes-kernel/linux/linux-imx-2.6.35.3/imx28evk/defconfig b/recipes-kernel/linux/linux-imx-2.6.35.3/imx28evk/defconfig
index dbb4eaa..bc1bc06 100644
--- a/recipes-kernel/linux/linux-imx-2.6.35.3/imx28evk/defconfig
+++ b/recipes-kernel/linux/linux-imx-2.6.35.3/imx28evk/defconfig
@@ -1,7 +1,7 @@
 #
 # Automatically generated make config: don't edit
 # Linux kernel version: 2.6.35.3
-# Mon Dec  6 17:17:47 2010
+# Tue Jul  2 16:27:45 2013
 #
 CONFIG_ARM=y
 CONFIG_SYS_SUPPORTS_APM_EMULATION=y
@@ -102,7 +102,6 @@ CONFIG_SIGNALFD=y
 CONFIG_TIMERFD=y
 CONFIG_EVENTFD=y
 CONFIG_SHMEM=y
-# CONFIG_ASHMEM is not set
 CONFIG_AIO=y
 CONFIG_HAVE_PERF_EVENTS=y
 CONFIG_PERF_USE_VMALLOC=y
@@ -259,6 +258,8 @@ CONFIG_MACH_MX28EVK=y
 CONFIG_VECTORS_PHY_ADDR=0
 CONFIG_MXS_TIMER_WITH_MACH=y
 # CONFIG_MEM_mDDR is not set
+CONFIG_MX28_SUSPEND_TO_RAM=y
+CONFIG_WORKAROUND_ARCUSB_REG_RW=y
 CONFIG_MXS_ICOLL=y
 CONFIG_MXS_EARLY_CONSOLE=y
 CONFIG_MXS_DMA_ENGINE=y
@@ -505,7 +506,6 @@ CONFIG_WIRELESS=y
 CONFIG_WIRELESS_EXT=y
 CONFIG_WEXT_CORE=y
 CONFIG_WEXT_PROC=y
-CONFIG_WEXT_SPY=y
 CONFIG_WEXT_PRIV=y
 # CONFIG_CFG80211 is not set
 CONFIG_WIRELESS_EXT_SYSFS=y
@@ -595,6 +595,7 @@ CONFIG_MTD_CFI_I2=y
 #
 # CONFIG_MTD_DATAFLASH is not set
 # CONFIG_MTD_MXC_DATAFLASH is not set
+# CONFIG_MTD_MXC_M25P80 is not set
 CONFIG_MTD_M25P80=m
 CONFIG_M25PXX_USE_FAST_READ=y
 # CONFIG_MTD_SST25L is not set
@@ -670,10 +671,8 @@ CONFIG_MISC_DEVICES=y
 # CONFIG_DS1682 is not set
 # CONFIG_TI_DAC7512 is not set
 CONFIG_MXS_PERSISTENT=y
-# CONFIG_ANDROID_PMEM is not set
-# CONFIG_UID_STAT is not set
-# CONFIG_C2PORT is not set
 CONFIG_MXS_PERFMON=y
+# CONFIG_C2PORT is not set
 
 #
 # EEPROM support
@@ -781,6 +780,7 @@ CONFIG_MII=y
 # CONFIG_KS8851 is not set
 # CONFIG_KS8851_MLL is not set
 CONFIG_FEC=y
+# CONFIG_FEC_NAPI is not set
 # CONFIG_FEC_1588 is not set
 # CONFIG_FEC2 is not set
 # CONFIG_NETDEV_1000 is not set
@@ -788,17 +788,6 @@ CONFIG_FEC=y
 CONFIG_WLAN=y
 # CONFIG_USB_ZD1201 is not set
 # CONFIG_HOSTAP is not set
-CONFIG_ATH6K_LEGACY=m
-CONFIG_AR600x_SD31_XXX=y
-# CONFIG_AR600x_WB31_XXX is not set
-# CONFIG_AR600x_SD32_XXX is not set
-# CONFIG_AR600x_CUSTOM_XXX is not set
-# CONFIG_ATH6KL_ENABLE_COEXISTENCE is not set
-# CONFIG_ATH6KL_HCI_BRIDGE is not set
-# CONFIG_ATH6KL_CFG80211 is not set
-# CONFIG_ATH6KL_HTC_RAW_INTERFACE is not set
-# CONFIG_ATH6KL_VIRTUAL_SCATTER_GATHER is not set
-# CONFIG_ATH6KL_DEBUG is not set
 
 #
 # Enable WiMAX (Networking options) to see the WiMAX drivers
@@ -861,6 +850,7 @@ CONFIG_KEYBOARD_ATKBD=y
 # CONFIG_KEYBOARD_SUNKBD is not set
 # CONFIG_KEYBOARD_XTKBD is not set
 CONFIG_KEYBOARD_MXS=y
+# CONFIG_KEYBOARD_MPR121 is not set
 CONFIG_INPUT_MOUSE=y
 CONFIG_MOUSE_PS2=y
 CONFIG_MOUSE_PS2_ALPS=y
@@ -908,6 +898,7 @@ CONFIG_INPUT_TOUCHSCREEN=y
 # CONFIG_TOUCHSCREEN_DYNAPRO is not set
 # CONFIG_TOUCHSCREEN_HAMPSHIRE is not set
 # CONFIG_TOUCHSCREEN_EETI is not set
+# CONFIG_TOUCHSCREEN_EGALAX is not set
 # CONFIG_TOUCHSCREEN_FUJITSU is not set
 CONFIG_TOUCHSCREEN_GUNZE=m
 # CONFIG_TOUCHSCREEN_ELO is not set
@@ -925,6 +916,8 @@ CONFIG_TOUCHSCREEN_MXS=y
 # CONFIG_TOUCHSCREEN_TSC2007 is not set
 # CONFIG_TOUCHSCREEN_W90X900 is not set
 # CONFIG_TOUCHSCREEN_TPS6507X is not set
+# CONFIG_TOUCHSCREEN_P1003 is not set
+# CONFIG_TOUCHSCREEN_MAX11801 is not set
 CONFIG_INPUT_MISC=y
 # CONFIG_INPUT_AD714X is not set
 # CONFIG_INPUT_ATI_REMOTE is not set
@@ -936,6 +929,7 @@ CONFIG_INPUT_MISC=y
 CONFIG_INPUT_UINPUT=m
 # CONFIG_INPUT_PCF8574 is not set
 # CONFIG_INPUT_GPIO_ROTARY_ENCODER is not set
+# CONFIG_INPUT_ISL29023 is not set
 
 #
 # Hardware I/O ports
@@ -1159,6 +1153,7 @@ CONFIG_MFD_SUPPORT=y
 # CONFIG_MFD_LTC3589_I2C is not set
 # CONFIG_MFD_PCF50633 is not set
 # CONFIG_MFD_MC13783 is not set
+# CONFIG_PMIC_DA9052 is not set
 # CONFIG_ABX500_CORE is not set
 # CONFIG_EZX_PCAP is not set
 # CONFIG_AB8500_CORE is not set
@@ -1597,7 +1592,6 @@ CONFIG_USB_GADGET_SELECTED=y
 # CONFIG_USB_GADGET_GOKU is not set
 CONFIG_USB_GADGET_ARC=y
 CONFIG_USB_ARC=y
-CONFIG_WORKAROUND_ARCUSB_REG_RW=y
 # CONFIG_USB_GADGET_LANGWELL is not set
 # CONFIG_USB_GADGET_DUMMY_HCD is not set
 CONFIG_USB_GADGET_DUALSPEED=y
@@ -1744,7 +1738,45 @@ CONFIG_DMADEVICES=y
 # CONFIG_AUXDISPLAY is not set
 # CONFIG_UIO is not set
 CONFIG_STAGING=y
-CONFIG_STAGING_EXCLUDE_BUILD=n
+# CONFIG_STAGING_EXCLUDE_BUILD is not set
+# CONFIG_VIDEO_TM6000 is not set
+# CONFIG_USB_IP_COMMON is not set
+# CONFIG_PRISM2_USB is not set
+# CONFIG_ECHO is not set
+# CONFIG_RT2870 is not set
+# CONFIG_COMEDI is not set
+# CONFIG_ASUS_OLED is not set
+# CONFIG_TRANZPORT is not set
+# CONFIG_POHMELFS is not set
+# CONFIG_LINE6_USB is not set
+# CONFIG_VT6656 is not set
+# CONFIG_FB_UDL is not set
+
+#
+# RAR Register Driver
+#
+# CONFIG_IIO is not set
+# CONFIG_RAMZSWAP is not set
+# CONFIG_BATMAN_ADV is not set
+# CONFIG_FB_SM7XX is not set
+
+#
+# Texas Instruments shared transport line discipline
+#
+# CONFIG_TI_ST is not set
+# CONFIG_ADIS16255 is not set
+CONFIG_ATH6K_LEGACY=m
+CONFIG_AR600x_SD31_XXX=y
+# CONFIG_AR600x_WB31_XXX is not set
+# CONFIG_AR600x_SD32_XXX is not set
+# CONFIG_AR600x_CUSTOM_XXX is not set
+# CONFIG_ATH6KL_ENABLE_COEXISTENCE is not set
+# CONFIG_ATH6KL_HCI_BRIDGE is not set
+# CONFIG_ATH6KL_CFG80211 is not set
+# CONFIG_ATH6KL_HTC_RAW_INTERFACE is not set
+# CONFIG_ATH6KL_VIRTUAL_SCATTER_GATHER is not set
+# CONFIG_ATH6KL_SKIP_ABI_VERSION_CHECK is not set
+# CONFIG_ATH6KL_DEBUG is not set
 
 #
 # File systems
@@ -1865,13 +1897,15 @@ CONFIG_NFS_FS=y
 CONFIG_NFS_V3=y
 # CONFIG_NFS_V3_ACL is not set
 CONFIG_NFS_V4=y
+# CONFIG_NFS_V4_1 is not set
 CONFIG_ROOT_NFS=y
 # CONFIG_NFSD is not set
 CONFIG_LOCKD=y
 CONFIG_LOCKD_V4=y
 CONFIG_NFS_COMMON=y
 CONFIG_SUNRPC=y
-# CONFIG_RPCSEC_GSS_KRB5 is not set
+CONFIG_SUNRPC_GSS=y
+CONFIG_RPCSEC_GSS_KRB5=y
 # CONFIG_RPCSEC_GSS_SPKM3 is not set
 # CONFIG_SMB_FS is not set
 # CONFIG_CEPH_FS is not set
@@ -1969,7 +2003,21 @@ CONFIG_HAVE_FUNCTION_TRACER=y
 CONFIG_RING_BUFFER=y
 CONFIG_RING_BUFFER_ALLOW_SWAP=y
 CONFIG_TRACING_SUPPORT=y
-# CONFIG_FTRACE is not set
+CONFIG_FTRACE=y
+# CONFIG_FUNCTION_TRACER is not set
+# CONFIG_IRQSOFF_TRACER is not set
+# CONFIG_PREEMPT_TRACER is not set
+# CONFIG_SCHED_TRACER is not set
+# CONFIG_ENABLE_DEFAULT_TRACERS is not set
+# CONFIG_BOOT_TRACER is not set
+CONFIG_BRANCH_PROFILE_NONE=y
+# CONFIG_PROFILE_ANNOTATED_BRANCHES is not set
+# CONFIG_PROFILE_ALL_BRANCHES is not set
+# CONFIG_STACK_TRACER is not set
+# CONFIG_KMEMTRACE is not set
+# CONFIG_WORKQUEUE_TRACER is not set
+# CONFIG_BLK_DEV_IO_TRACE is not set
+# CONFIG_RING_BUFFER_BENCHMARK is not set
 # CONFIG_DYNAMIC_DEBUG is not set
 # CONFIG_ATOMIC64_SELFTEST is not set
 # CONFIG_SAMPLES is not set
diff --git a/recipes-kernel/linux/linux-imx-2.6.35.3/mx5/defconfig b/recipes-kernel/linux/linux-imx-2.6.35.3/mx5/defconfig
index c2a11cb..94323bc 100644
--- a/recipes-kernel/linux/linux-imx-2.6.35.3/mx5/defconfig
+++ b/recipes-kernel/linux/linux-imx-2.6.35.3/mx5/defconfig
@@ -1,7 +1,7 @@
 #
 # Automatically generated make config: don't edit
 # Linux kernel version: 2.6.35.3
-# Tue Sep 11 14:37:32 2012
+# Tue Jul  2 16:23:28 2013
 #
 CONFIG_ARM=y
 CONFIG_HAVE_PWM=y
@@ -121,7 +121,7 @@ CONFIG_PERF_USE_VMALLOC=y
 #
 # Kernel Performance Events And Counters
 #
-# CONFIG_PERF_EVENTS is not set
+CONFIG_PERF_EVENTS=y
 # CONFIG_PERF_COUNTERS is not set
 CONFIG_VM_EVENT_COUNTERS=y
 CONFIG_SLUB_DEBUG=y
@@ -131,7 +131,8 @@ CONFIG_SLUB=y
 # CONFIG_SLOB is not set
 # CONFIG_PROFILING is not set
 CONFIG_HAVE_OPROFILE=y
-# CONFIG_KPROBES is not set
+CONFIG_KPROBES=y
+CONFIG_KRETPROBES=y
 CONFIG_HAVE_KPROBES=y
 CONFIG_HAVE_KRETPROBES=y
 CONFIG_HAVE_CLK=y
@@ -364,6 +365,7 @@ CONFIG_AEABI=y
 # CONFIG_ARCH_SELECT_MEMORY_MODEL is not set
 CONFIG_HIGHMEM=y
 # CONFIG_HIGHPTE is not set
+CONFIG_HW_PERF_EVENTS=y
 CONFIG_SELECT_MEMORY_MODEL=y
 CONFIG_FLATMEM_MANUAL=y
 # CONFIG_DISCONTIGMEM_MANUAL is not set
@@ -522,6 +524,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic"
 # Network testing
 #
 # CONFIG_NET_PKTGEN is not set
+# CONFIG_NET_TCPPROBE is not set
 # CONFIG_HAMRADIO is not set
 CONFIG_CAN=y
 CONFIG_CAN_RAW=y
@@ -874,6 +877,7 @@ CONFIG_SMSC911X=y
 # CONFIG_KS8851 is not set
 # CONFIG_KS8851_MLL is not set
 CONFIG_FEC=y
+# CONFIG_FEC_NAPI is not set
 # CONFIG_FEC_1588 is not set
 # CONFIG_FEC2 is not set
 # CONFIG_NETDEV_1000 is not set
@@ -2425,7 +2429,20 @@ CONFIG_DEBUG_BUGVERBOSE=y
 CONFIG_SYSCTL_SYSCALL_CHECK=y
 CONFIG_HAVE_FUNCTION_TRACER=y
 CONFIG_TRACING_SUPPORT=y
-# CONFIG_FTRACE is not set
+CONFIG_FTRACE=y
+# CONFIG_FUNCTION_TRACER is not set
+# CONFIG_IRQSOFF_TRACER is not set
+# CONFIG_PREEMPT_TRACER is not set
+# CONFIG_SCHED_TRACER is not set
+# CONFIG_ENABLE_DEFAULT_TRACERS is not set
+# CONFIG_BOOT_TRACER is not set
+CONFIG_BRANCH_PROFILE_NONE=y
+# CONFIG_PROFILE_ANNOTATED_BRANCHES is not set
+# CONFIG_PROFILE_ALL_BRANCHES is not set
+# CONFIG_STACK_TRACER is not set
+# CONFIG_KMEMTRACE is not set
+# CONFIG_WORKQUEUE_TRACER is not set
+# CONFIG_BLK_DEV_IO_TRACE is not set
 # CONFIG_ATOMIC64_SELFTEST is not set
 # CONFIG_SAMPLES is not set
 CONFIG_HAVE_ARCH_KGDB=y
-- 
1.8.3.1



^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [meta-fsl-arm PATCH 3/4] u-boot-fslc: Update to 2013.07-rc2 release
  2013-07-02 19:34 [meta-fsl-arm PATCH 1/4] linux-imx (3.0.35): Enable tracing support so lttng's modules are build Otavio Salvador
  2013-07-02 19:34 ` [meta-fsl-arm PATCH 2/4] linux-imx (2.6.35.3): " Otavio Salvador
@ 2013-07-02 19:34 ` Otavio Salvador
  2013-07-02 19:34 ` [meta-fsl-arm PATCH 4/4] imx6dlsabresd: Use U-Boot 2013.07 Otavio Salvador
  2013-07-02 20:04 ` [meta-fsl-arm PATCH 1/4] linux-imx (3.0.35): Enable tracing support so lttng's modules are build Eric Bénard
  3 siblings, 0 replies; 10+ messages in thread
From: Otavio Salvador @ 2013-07-02 19:34 UTC (permalink / raw)
  To: meta-freescale Mailing List; +Cc: Otavio Salvador

This updates the U-Boot code to the v2013.07-rc2 tag and also merges
the imx/master tree on it. This contains most changes which will
affect us in the upcoming 2013.07 release and should allow us to give
it a good test.

Change-Id: I5f4d3770bbc264ba85dc38b93ffc9db31633a0ff
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
---
 recipes-bsp/u-boot/u-boot-fslc_2013.07.bb    | 2 +-
 recipes-bsp/u-boot/u-boot-mxsboot_2013.07.bb | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/recipes-bsp/u-boot/u-boot-fslc_2013.07.bb b/recipes-bsp/u-boot/u-boot-fslc_2013.07.bb
index ffd6a5a..4e33d83 100644
--- a/recipes-bsp/u-boot/u-boot-fslc_2013.07.bb
+++ b/recipes-bsp/u-boot/u-boot-fslc_2013.07.bb
@@ -10,7 +10,7 @@ PROVIDES += "u-boot"
 
 PV = "v2013.07"
 
-SRCREV = "d5ab097f918d09eb9e31f6b46d8e1ceb6ec44c41"
+SRCREV = "161d75c652f3d72bc7ffbbb1e08d82d014d23bc9"
 SRC_URI = "git://github.com/Freescale/u-boot-imx.git"
 
 S = "${WORKDIR}/git"
diff --git a/recipes-bsp/u-boot/u-boot-mxsboot_2013.07.bb b/recipes-bsp/u-boot/u-boot-mxsboot_2013.07.bb
index 872b30d..c183983 100644
--- a/recipes-bsp/u-boot/u-boot-mxsboot_2013.07.bb
+++ b/recipes-bsp/u-boot/u-boot-mxsboot_2013.07.bb
@@ -5,7 +5,7 @@ SECTION = "bootloader"
 
 PV = "v2013.07"
 
-SRCREV = "d5ab097f918d09eb9e31f6b46d8e1ceb6ec44c41"
+SRCREV = "161d75c652f3d72bc7ffbbb1e08d82d014d23bc9"
 SRC_URI = "git://github.com/Freescale/u-boot-imx.git"
 
 S = "${WORKDIR}/git"
-- 
1.8.3.1



^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [meta-fsl-arm PATCH 4/4] imx6dlsabresd: Use U-Boot 2013.07
  2013-07-02 19:34 [meta-fsl-arm PATCH 1/4] linux-imx (3.0.35): Enable tracing support so lttng's modules are build Otavio Salvador
  2013-07-02 19:34 ` [meta-fsl-arm PATCH 2/4] linux-imx (2.6.35.3): " Otavio Salvador
  2013-07-02 19:34 ` [meta-fsl-arm PATCH 3/4] u-boot-fslc: Update to 2013.07-rc2 release Otavio Salvador
@ 2013-07-02 19:34 ` Otavio Salvador
  2013-07-02 20:04 ` [meta-fsl-arm PATCH 1/4] linux-imx (3.0.35): Enable tracing support so lttng's modules are build Eric Bénard
  3 siblings, 0 replies; 10+ messages in thread
From: Otavio Salvador @ 2013-07-02 19:34 UTC (permalink / raw)
  To: meta-freescale Mailing List; +Cc: Otavio Salvador

Change-Id: Ieb49b155a1332124c51f548cbb0057fb0b52dcf9
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
---
 conf/machine/imx6dlsabresd.conf | 6 +-----
 1 file changed, 1 insertion(+), 5 deletions(-)

diff --git a/conf/machine/imx6dlsabresd.conf b/conf/machine/imx6dlsabresd.conf
index 3962402..d76a64c 100644
--- a/conf/machine/imx6dlsabresd.conf
+++ b/conf/machine/imx6dlsabresd.conf
@@ -8,11 +8,7 @@ include conf/machine/include/tune-cortexa9.inc
 
 SOC_FAMILY = "mx6:mx6dl"
 
-PREFERRED_PROVIDER_u-boot = "u-boot-imx"
-
-UBOOT_MACHINE = "mx6dl_sabresd_config"
-UBOOT_SUFFIX = "bin"
-UBOOT_PADDING = "2"
+UBOOT_MACHINE = "mx6dlsabresd_config"
 
 SERIAL_CONSOLE = "115200 ttymxc0"
 
-- 
1.8.3.1



^ permalink raw reply related	[flat|nested] 10+ messages in thread

* Re: [meta-fsl-arm PATCH 1/4] linux-imx (3.0.35): Enable tracing support so lttng's modules are build
  2013-07-02 19:34 [meta-fsl-arm PATCH 1/4] linux-imx (3.0.35): Enable tracing support so lttng's modules are build Otavio Salvador
                   ` (2 preceding siblings ...)
  2013-07-02 19:34 ` [meta-fsl-arm PATCH 4/4] imx6dlsabresd: Use U-Boot 2013.07 Otavio Salvador
@ 2013-07-02 20:04 ` Eric Bénard
  2013-07-03 12:56   ` Otavio Salvador
  3 siblings, 1 reply; 10+ messages in thread
From: Eric Bénard @ 2013-07-02 20:04 UTC (permalink / raw)
  To: Otavio Salvador; +Cc: meta-freescale Mailing List

Le Tue,  2 Jul 2013 16:34:18 -0300,
Otavio Salvador <otavio@ossystems.com.br> a écrit :

> lttng support is enabled in Freescale test images however its modules
> were not being build due lacking of tracing support in the
> kernel. This patch enables the needed kernel features to allow the
> modules to be build and thus making lttng usable.
> 
this patch does much more than simply enabling tracing support

Eric


^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [meta-fsl-arm PATCH 1/4] linux-imx (3.0.35): Enable tracing support so lttng's modules are build
  2013-07-02 20:04 ` [meta-fsl-arm PATCH 1/4] linux-imx (3.0.35): Enable tracing support so lttng's modules are build Eric Bénard
@ 2013-07-03 12:56   ` Otavio Salvador
  2013-07-03 12:58     ` Fabio Estevam
  2013-07-03 13:01     ` Eric Bénard
  0 siblings, 2 replies; 10+ messages in thread
From: Otavio Salvador @ 2013-07-03 12:56 UTC (permalink / raw)
  To: Eric Bénard; +Cc: meta-freescale Mailing List

On Tue, Jul 2, 2013 at 5:04 PM, Eric Bénard <eric@eukrea.com> wrote:
> Le Tue,  2 Jul 2013 16:34:18 -0300,
> Otavio Salvador <otavio@ossystems.com.br> a écrit :
>
>> lttng support is enabled in Freescale test images however its modules
>> were not being build due lacking of tracing support in the
>> kernel. This patch enables the needed kernel features to allow the
>> modules to be build and thus making lttng usable.
>>
> this patch does much more than simply enabling tracing support

It does not; I know it has more enables there but those are result of
the new dependencies added by Freescale kernel as I just enabled the
tracing and runned savedefconfig.

--
Otavio Salvador                             O.S. Systems
http://www.ossystems.com.br        http://projetos.ossystems.com.br
Mobile: +55 (53) 9981-7854            Mobile: +1 (347) 903-9750


^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [meta-fsl-arm PATCH 1/4] linux-imx (3.0.35): Enable tracing support so lttng's modules are build
  2013-07-03 12:56   ` Otavio Salvador
@ 2013-07-03 12:58     ` Fabio Estevam
  2013-07-03 13:04       ` Otavio Salvador
  2013-07-03 13:01     ` Eric Bénard
  1 sibling, 1 reply; 10+ messages in thread
From: Fabio Estevam @ 2013-07-03 12:58 UTC (permalink / raw)
  To: Otavio Salvador; +Cc: meta-freescale Mailing List

On Wed, Jul 3, 2013 at 9:56 AM, Otavio Salvador <otavio@ossystems.com.br> wrote:
> On Tue, Jul 2, 2013 at 5:04 PM, Eric Bénard <eric@eukrea.com> wrote:
>> Le Tue,  2 Jul 2013 16:34:18 -0300,
>> Otavio Salvador <otavio@ossystems.com.br> a écrit :
>>
>>> lttng support is enabled in Freescale test images however its modules
>>> were not being build due lacking of tracing support in the
>>> kernel. This patch enables the needed kernel features to allow the
>>> modules to be build and thus making lttng usable.
>>>
>> this patch does much more than simply enabling tracing support
>
> It does not; I know it has more enables there but those are result of
> the new dependencies added by Freescale kernel as I just enabled the
> tracing and runned savedefconfig.

I agree with Eric.

In this patch you added:
+CONFIG_MACH_MX6Q_HDMIDONGLE=y

,which has nothing to do with enabling trace support.


^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [meta-fsl-arm PATCH 1/4] linux-imx (3.0.35): Enable tracing support so lttng's modules are build
  2013-07-03 12:56   ` Otavio Salvador
  2013-07-03 12:58     ` Fabio Estevam
@ 2013-07-03 13:01     ` Eric Bénard
  2013-07-03 13:05       ` Otavio Salvador
  1 sibling, 1 reply; 10+ messages in thread
From: Eric Bénard @ 2013-07-03 13:01 UTC (permalink / raw)
  To: Otavio Salvador; +Cc: meta-freescale Mailing List

Le Wed, 3 Jul 2013 09:56:18 -0300,
Otavio Salvador <otavio@ossystems.com.br> a écrit :

> On Tue, Jul 2, 2013 at 5:04 PM, Eric Bénard <eric@eukrea.com> wrote:
> > Le Tue,  2 Jul 2013 16:34:18 -0300,
> > Otavio Salvador <otavio@ossystems.com.br> a écrit :
> >
> >> lttng support is enabled in Freescale test images however its modules
> >> were not being build due lacking of tracing support in the
> >> kernel. This patch enables the needed kernel features to allow the
> >> modules to be build and thus making lttng usable.
> >>
> > this patch does much more than simply enabling tracing support
> 
> It does not; I know it has more enables there but those are result of
> the new dependencies added by Freescale kernel as I just enabled the
> tracing and runned savedefconfig.
> 
this one adds a new machine :
+CONFIG_MACH_MX6Q_HDMIDONGLE=y
.../...

later you enable netfilter :
+CONFIG_NETFILTER=y
+CONFIG_LLC2=y

these options doesn't seems to be dependencies for tracing support.

Eric


^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [meta-fsl-arm PATCH 1/4] linux-imx (3.0.35): Enable tracing support so lttng's modules are build
  2013-07-03 12:58     ` Fabio Estevam
@ 2013-07-03 13:04       ` Otavio Salvador
  0 siblings, 0 replies; 10+ messages in thread
From: Otavio Salvador @ 2013-07-03 13:04 UTC (permalink / raw)
  To: Fabio Estevam; +Cc: meta-freescale Mailing List

On Wed, Jul 3, 2013 at 9:58 AM, Fabio Estevam <festevam@gmail.com> wrote:
> On Wed, Jul 3, 2013 at 9:56 AM, Otavio Salvador <otavio@ossystems.com.br> wrote:
>> On Tue, Jul 2, 2013 at 5:04 PM, Eric Bénard <eric@eukrea.com> wrote:
>>> Le Tue,  2 Jul 2013 16:34:18 -0300,
>>> Otavio Salvador <otavio@ossystems.com.br> a écrit :
>>>
>>>> lttng support is enabled in Freescale test images however its modules
>>>> were not being build due lacking of tracing support in the
>>>> kernel. This patch enables the needed kernel features to allow the
>>>> modules to be build and thus making lttng usable.
>>>>
>>> this patch does much more than simply enabling tracing support
>>
>> It does not; I know it has more enables there but those are result of
>> the new dependencies added by Freescale kernel as I just enabled the
>> tracing and runned savedefconfig.
>
> I agree with Eric.
>
> In this patch you added:
> +CONFIG_MACH_MX6Q_HDMIDONGLE=y
>
> ,which has nothing to do with enabling trace support.

and has been added because of changes in the kernel. I didn't enable
them explicitly.

--
Otavio Salvador                             O.S. Systems
http://www.ossystems.com.br        http://projetos.ossystems.com.br
Mobile: +55 (53) 9981-7854            Mobile: +1 (347) 903-9750


^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [meta-fsl-arm PATCH 1/4] linux-imx (3.0.35): Enable tracing support so lttng's modules are build
  2013-07-03 13:01     ` Eric Bénard
@ 2013-07-03 13:05       ` Otavio Salvador
  0 siblings, 0 replies; 10+ messages in thread
From: Otavio Salvador @ 2013-07-03 13:05 UTC (permalink / raw)
  To: Eric Bénard; +Cc: meta-freescale Mailing List

On Wed, Jul 3, 2013 at 10:01 AM, Eric Bénard <eric@eukrea.com> wrote:
> Le Wed, 3 Jul 2013 09:56:18 -0300,
> Otavio Salvador <otavio@ossystems.com.br> a écrit :
>
>> On Tue, Jul 2, 2013 at 5:04 PM, Eric Bénard <eric@eukrea.com> wrote:
>> > Le Tue,  2 Jul 2013 16:34:18 -0300,
>> > Otavio Salvador <otavio@ossystems.com.br> a écrit :
>> >
>> >> lttng support is enabled in Freescale test images however its modules
>> >> were not being build due lacking of tracing support in the
>> >> kernel. This patch enables the needed kernel features to allow the
>> >> modules to be build and thus making lttng usable.
>> >>
>> > this patch does much more than simply enabling tracing support
>>
>> It does not; I know it has more enables there but those are result of
>> the new dependencies added by Freescale kernel as I just enabled the
>> tracing and runned savedefconfig.
>>
> this one adds a new machine :
> +CONFIG_MACH_MX6Q_HDMIDONGLE=y
> .../...
>
> later you enable netfilter :
> +CONFIG_NETFILTER=y
> +CONFIG_LLC2=y
>
> these options doesn't seems to be dependencies for tracing support.

Ok; I will do a sync commit before and then this one.

--
Otavio Salvador                             O.S. Systems
http://www.ossystems.com.br        http://projetos.ossystems.com.br
Mobile: +55 (53) 9981-7854            Mobile: +1 (347) 903-9750


^ permalink raw reply	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2013-07-03 13:05 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-07-02 19:34 [meta-fsl-arm PATCH 1/4] linux-imx (3.0.35): Enable tracing support so lttng's modules are build Otavio Salvador
2013-07-02 19:34 ` [meta-fsl-arm PATCH 2/4] linux-imx (2.6.35.3): " Otavio Salvador
2013-07-02 19:34 ` [meta-fsl-arm PATCH 3/4] u-boot-fslc: Update to 2013.07-rc2 release Otavio Salvador
2013-07-02 19:34 ` [meta-fsl-arm PATCH 4/4] imx6dlsabresd: Use U-Boot 2013.07 Otavio Salvador
2013-07-02 20:04 ` [meta-fsl-arm PATCH 1/4] linux-imx (3.0.35): Enable tracing support so lttng's modules are build Eric Bénard
2013-07-03 12:56   ` Otavio Salvador
2013-07-03 12:58     ` Fabio Estevam
2013-07-03 13:04       ` Otavio Salvador
2013-07-03 13:01     ` Eric Bénard
2013-07-03 13:05       ` Otavio Salvador

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.