Skip to content

Commit

Permalink
linux: ship defconfig (DEPLOYDIR -> DEPLOY_DIR_IMAGE)
Browse files Browse the repository at this point in the history
Since we don't inherit deploy, the kernel config wasn't copied in the
expected location. Simply copy the file to DEPLOY_DIR_IMAGE ourself.

Signed-off-by: Fathi Boudra <[email protected]>
  • Loading branch information
fboudra committed Jun 23, 2017
1 parent 3a1b450 commit b521ae9
Show file tree
Hide file tree
Showing 11 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion recipes-kernel/linux/linux-hikey-aosp_4.4.bb
Original file line number Diff line number Diff line change
Expand Up @@ -70,5 +70,5 @@ do_configure() {

bbplain "Saving defconfig to:\n${B}/defconfig"
oe_runmake -C ${B} savedefconfig
cp -a ${B}/defconfig ${DEPLOYDIR}
cp -a ${B}/defconfig ${DEPLOY_DIR_IMAGE}
}
2 changes: 1 addition & 1 deletion recipes-kernel/linux/linux-hikey-aosp_4.9.bb
Original file line number Diff line number Diff line change
Expand Up @@ -69,5 +69,5 @@ do_configure() {

bbplain "Saving defconfig to:\n${B}/defconfig"
oe_runmake -C ${B} savedefconfig
cp -a ${B}/defconfig ${DEPLOYDIR}
cp -a ${B}/defconfig ${DEPLOY_DIR_IMAGE}
}
2 changes: 1 addition & 1 deletion recipes-kernel/linux/linux-hikey-lt_4.4.bb
Original file line number Diff line number Diff line change
Expand Up @@ -71,5 +71,5 @@ do_configure() {

bbplain "Saving defconfig to:\n${B}/defconfig"
oe_runmake -C ${B} savedefconfig
cp -a ${B}/defconfig ${DEPLOYDIR}
cp -a ${B}/defconfig ${DEPLOY_DIR_IMAGE}
}
2 changes: 1 addition & 1 deletion recipes-kernel/linux/linux-hikey-lts_4.4.bb
Original file line number Diff line number Diff line change
Expand Up @@ -71,5 +71,5 @@ do_configure() {

bbplain "Saving defconfig to:\n${B}/defconfig"
oe_runmake -C ${B} savedefconfig
cp -a ${B}/defconfig ${DEPLOYDIR}
cp -a ${B}/defconfig ${DEPLOY_DIR_IMAGE}
}
2 changes: 1 addition & 1 deletion recipes-kernel/linux/linux-hikey-mainline_git.bb
Original file line number Diff line number Diff line change
Expand Up @@ -63,5 +63,5 @@ do_configure() {

bbplain "Saving defconfig to:\n${B}/defconfig"
oe_runmake -C ${B} savedefconfig
cp -a ${B}/defconfig ${DEPLOYDIR}
cp -a ${B}/defconfig ${DEPLOY_DIR_IMAGE}
}
2 changes: 1 addition & 1 deletion recipes-kernel/linux/linux-hikey-next_git.bb
Original file line number Diff line number Diff line change
Expand Up @@ -63,5 +63,5 @@ do_configure() {

bbplain "Saving defconfig to:\n${B}/defconfig"
oe_runmake -C ${B} savedefconfig
cp -a ${B}/defconfig ${DEPLOYDIR}
cp -a ${B}/defconfig ${DEPLOY_DIR_IMAGE}
}
2 changes: 1 addition & 1 deletion recipes-kernel/linux/linux-hikey-stable-rc_4.9.bb
Original file line number Diff line number Diff line change
Expand Up @@ -69,5 +69,5 @@ do_configure() {

bbplain "Saving defconfig to:\n${B}/defconfig"
oe_runmake -C ${B} savedefconfig
cp -a ${B}/defconfig ${DEPLOYDIR}
cp -a ${B}/defconfig ${DEPLOY_DIR_IMAGE}
}
2 changes: 1 addition & 1 deletion recipes-kernel/linux/linux-hikey-stable_4.9.bb
Original file line number Diff line number Diff line change
Expand Up @@ -69,5 +69,5 @@ do_configure() {

bbplain "Saving defconfig to:\n${B}/defconfig"
oe_runmake -C ${B} savedefconfig
cp -a ${B}/defconfig ${DEPLOYDIR}
cp -a ${B}/defconfig ${DEPLOY_DIR_IMAGE}
}
2 changes: 1 addition & 1 deletion recipes-kernel/linux/linux-hikey960_git.bb
Original file line number Diff line number Diff line change
Expand Up @@ -57,5 +57,5 @@ do_configure() {

bbplain "Saving defconfig to:\n${B}/defconfig"
oe_runmake -C ${B} savedefconfig
cp -a ${B}/defconfig ${DEPLOYDIR}
cp -a ${B}/defconfig ${DEPLOY_DIR_IMAGE}
}
2 changes: 1 addition & 1 deletion recipes-kernel/linux/linux-hikey_git.bb
Original file line number Diff line number Diff line change
Expand Up @@ -94,5 +94,5 @@ do_configure() {

bbplain "Saving defconfig to:\n${B}/defconfig"
oe_runmake -C ${B} savedefconfig
cp -a ${B}/defconfig ${DEPLOYDIR}
cp -a ${B}/defconfig ${DEPLOY_DIR_IMAGE}
}
2 changes: 1 addition & 1 deletion recipes-kernel/linux/linux-poplar_git.bb
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ do_configure() {

bbplain "Saving defconfig to:\n${B}/defconfig"
oe_runmake -C ${B} savedefconfig
cp -a ${B}/defconfig ${DEPLOYDIR}
cp -a ${B}/defconfig ${DEPLOY_DIR_IMAGE}
}

# Create a 128M boot image. block size is 1024. (128*1024=131072)
Expand Down

0 comments on commit b521ae9

Please sign in to comment.