Advertisement
Guest User

Untitled

a guest
Jan 17th, 2020
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. #old
  2. do_configure_prepend() {
  3. # copy latest defconfig for imx_v7_defoonfig to use
  4. cp ${S}/arch/arm/configs/imx_v7_defconfig ${S}/.config
  5. cp ${S}/arch/arm/configs/imx_v7_defconfig ${S}/../defconfig
  6. }
  7. #new
  8. addtask copy_defconfig after do_patch before do_preconfigure
  9. do_copy_defconfig() {
  10. # copy latest defconfig for imx_v7_defoonfig to use
  11. cp ${S}/arch/arm/configs/imx_v7_defconfig ${S}/.config
  12. cp ${S}/arch/arm/configs/imx_v7_defconfig ${WORKDIR}/defconfig
  13. cp ${S}/arch/arm/configs/imx_v7_defconfig ${S}/../defconfig
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement