diff options
author | Richard Purdie <rpurdie@rpsys.net> | 2006-08-27 17:31:47 +0000 |
---|---|---|
committer | Richard Purdie <rpurdie@rpsys.net> | 2006-08-27 17:31:47 +0000 |
commit | 98928e07d9798f59e1db3d7fcd47fd2c63766be2 (patch) | |
tree | 47d9e33d927e77bcc69c69758fa8e46e2932676d /packages/images/bootstrap-image.bb | |
parent | ec79ca5996b24f3b3bd39f43774b5b1bbbbce50b (diff) |
Add MACHINE_TASK_PROVIDER to remove hardcoded references to task-bootstrap and allow machines/distros to elect an alternative
Diffstat (limited to 'packages/images/bootstrap-image.bb')
-rw-r--r-- | packages/images/bootstrap-image.bb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/images/bootstrap-image.bb b/packages/images/bootstrap-image.bb index 1791dd8f56..50c1a8f354 100644 --- a/packages/images/bootstrap-image.bb +++ b/packages/images/bootstrap-image.bb @@ -1,8 +1,8 @@ export IMAGE_BASENAME = "bootstrap-image" export IMAGE_LINGUAS = "" -export IPKG_INSTALL = "task-bootstrap" +export IPKG_INSTALL = "${MACHINE_TASK_PROVIDER}" -DEPENDS = "task-bootstrap" +DEPENDS = "${MACHINE_TASK_PROVIDER}" inherit image_ipk |