diff options
-rw-r--r-- | recipes-bsp/linux/linux-omap-psp_2.6.32.bb | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/recipes-bsp/linux/linux-omap-psp_2.6.32.bb b/recipes-bsp/linux/linux-omap-psp_2.6.32.bb index 3eca11ae..368872cf 100644 --- a/recipes-bsp/linux/linux-omap-psp_2.6.32.bb +++ b/recipes-bsp/linux/linux-omap-psp_2.6.32.bb | |||
@@ -185,7 +185,17 @@ do_install_perf() { | |||
185 | : | 185 | : |
186 | } | 186 | } |
187 | 187 | ||
188 | do_install_prepend() { | ||
189 | mkdir headerstash -p | ||
190 | cp include/linux/bounds.h headerstash/ | ||
191 | cp include/asm-arm/asm-offsets.h headerstash/ | ||
192 | } | ||
193 | |||
188 | do_install_append() { | 194 | do_install_append() { |
195 | cp headerstash/bounds.h $kerneldir/include/linux/ | ||
196 | cp headerstash/asm-offsets.h $kerneldir/include/asm-arm/asm-offsets.h | ||
197 | rm -rf headerstash/ | ||
198 | |||
189 | install -d ${D}/boot | 199 | install -d ${D}/boot |
190 | install -m 0644 Documentation/arm/OMAP/DSS ${D}/boot/ | 200 | install -m 0644 Documentation/arm/OMAP/DSS ${D}/boot/ |
191 | } | 201 | } |