public inbox for isar-users@googlegroups.com
 help / color / mirror / Atom feed
* [PATCH] linux-custom: Install config and map file to /boot
@ 2020-03-17 17:14 Vijai Kumar K
  2020-03-17 17:19 ` vijai kumar
  2020-03-17 17:32 ` Jan Kiszka
  0 siblings, 2 replies; 28+ messages in thread
From: Vijai Kumar K @ 2020-03-17 17:14 UTC (permalink / raw)
  To: isar-users; +Cc: Vijai Kumar K

Align with upstream debian linux-image package. Install the config and
System.map file to /boot directory. Skip installation for User Mode Linux.

Signed-off-by: Vijai Kumar K <Vijaikumar_Kanagarajan@mentor.com>
---
 .../linux/files/debian/isar/install.tmpl           | 14 ++++++++++++++
 1 file changed, 14 insertions(+)

diff --git a/meta/recipes-kernel/linux/files/debian/isar/install.tmpl b/meta/recipes-kernel/linux/files/debian/isar/install.tmpl
index 12d592d..4e1f850 100644
--- a/meta/recipes-kernel/linux/files/debian/isar/install.tmpl
+++ b/meta/recipes-kernel/linux/files/debian/isar/install.tmpl
@@ -37,6 +37,8 @@ do_install() {
     set -x
 
     install_image
+    install_config
+    install_map
     install_hooks
     install_dtbs
     install_kmods
@@ -69,6 +71,18 @@ install_image() {
     install_image_debug
 }
 
+install_config() {
+    if [ "${ARCH}" != "um" ]; then
+        cp ${O}/.config ${deb_img_dir}/$(dirname ${kimage_path})/config-${krel}
+    fi
+}
+
+install_map() {
+    if [ "${ARCH}" != "um" ]; then
+        cp ${O}/System.map ${deb_img_dir}/$(dirname ${kimage_path})/System.map-${krel}
+    fi
+}
+
 install_image_debug() {
     # Different tools want the image in different locations
     # perf
-- 
2.17.1


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

end of thread, other threads:[~2020-04-20 19:51 UTC | newest]

Thread overview: 28+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-03-17 17:14 [PATCH] linux-custom: Install config and map file to /boot Vijai Kumar K
2020-03-17 17:19 ` vijai kumar
2020-03-17 17:39   ` Jan Kiszka
2020-03-25  7:07     ` cedric_hombourger
2020-04-03  7:28       ` vijai kumar
2020-04-03  7:29         ` vijai kumar
2020-03-17 17:32 ` Jan Kiszka
2020-03-18  5:53   ` vijai kumar
2020-03-18  7:34     ` Henning Schild
2020-03-18 13:03       ` vijai kumar
2020-03-18 13:21       ` [PATCH v2] " Vijai Kumar K
2020-03-23  6:12         ` Jan Kiszka
2020-03-23  6:53           ` Henning Schild
2020-03-23  6:55             ` Jan Kiszka
2020-03-23  7:49               ` vijai kumar
2020-03-23  9:13               ` Henning Schild
2020-03-23  9:24                 ` vijai kumar
2020-03-23 10:40                   ` Henning Schild
2020-03-23 13:40                     ` [PATCH v3 1/2] " Vijai Kumar K
2020-03-23 13:40                       ` [PATCH v3 2/2] meta/recipes-kernel: Replace cp with install Vijai Kumar K
2020-04-17 15:05                       ` [PATCH v3 1/2] linux-custom: Install config and map file to /boot Baurzhan Ismagulov
2020-04-17 18:44                         ` vijai kumar
2020-04-17 18:59                           ` vijai kumar
2020-04-20  9:28                             ` Baurzhan Ismagulov
2020-04-20 10:07                               ` vijai kumar
2020-04-20 16:03                                 ` Baurzhan Ismagulov
2020-04-20 19:46                                   ` Henning Schild
2020-04-20 19:51                                 ` Henning Schild

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox