diff options
Diffstat (limited to 'meta/classes')
-rw-r--r-- | meta/classes/base.bbclass | 10 | ||||
-rw-r--r-- | meta/classes/devshell.bbclass | 13 |
2 files changed, 14 insertions, 9 deletions
diff --git a/meta/classes/base.bbclass b/meta/classes/base.bbclass index eef0efa926..940e7ac7a4 100644 --- a/meta/classes/base.bbclass +++ b/meta/classes/base.bbclass | |||
@@ -572,14 +572,6 @@ addtask build after do_populate_staging | |||
572 | do_build = "" | 572 | do_build = "" |
573 | do_build[func] = "1" | 573 | do_build[func] = "1" |
574 | 574 | ||
575 | do_devshell[dirs] = "${S}" | ||
576 | do_devshell[nostamp] = 1 | ||
577 | do_devshell[interactive] = 1 | ||
578 | base_do_devshell() { | ||
579 | bash -i | ||
580 | } | ||
581 | addtask devshell | ||
582 | |||
583 | # Functions that update metadata based on files outputted | 575 | # Functions that update metadata based on files outputted |
584 | # during the build process. | 576 | # during the build process. |
585 | 577 | ||
@@ -695,7 +687,7 @@ python () { | |||
695 | # Patch handling | 687 | # Patch handling |
696 | inherit patch | 688 | inherit patch |
697 | 689 | ||
698 | EXPORT_FUNCTIONS do_clean do_mrproper do_fetch do_unpack do_configure do_compile do_install do_package do_populate_pkgs do_stage do_devshell | 690 | EXPORT_FUNCTIONS do_clean do_mrproper do_fetch do_unpack do_configure do_compile do_install do_package do_populate_pkgs do_stage |
699 | 691 | ||
700 | MIRRORS[func] = "0" | 692 | MIRRORS[func] = "0" |
701 | MIRRORS () { | 693 | MIRRORS () { |
diff --git a/meta/classes/devshell.bbclass b/meta/classes/devshell.bbclass new file mode 100644 index 0000000000..7948b65418 --- /dev/null +++ b/meta/classes/devshell.bbclass | |||
@@ -0,0 +1,13 @@ | |||
1 | EXTRA_OEMAKE[export] = 1 | ||
2 | |||
3 | do_devshell[dirs] = "${S}" | ||
4 | do_devshell[nostamp] = 1 | ||
5 | do_devshell[interactive] = 1 | ||
6 | devshell_do_devshell() { | ||
7 | bash -i | ||
8 | } | ||
9 | addtask devshell | ||
10 | |||
11 | |||
12 | EXPORT_FUNCTIONS do_devshell | ||
13 | |||