pkg.yml; update to use the new format of specifying package initialization
functions.


Project: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/repo
Commit: 
http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/commit/eced03f2
Tree: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/tree/eced03f2
Diff: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/diff/eced03f2

Branch: refs/heads/sensors_branch
Commit: eced03f21908ad72c73355dac30a38b6e9d6cc2e
Parents: fd434f2
Author: Marko Kiiskila <ma...@runtime.io>
Authored: Fri Jan 20 18:15:19 2017 -0800
Committer: Marko Kiiskila <ma...@runtime.io>
Committed: Fri Jan 20 18:17:19 2017 -0800

----------------------------------------------------------------------
 boot/split/pkg.yml                        | 4 ++--
 fs/fatfs/pkg.yml                          | 4 ++--
 fs/nffs/pkg.yml                           | 4 ++--
 kernel/os/pkg.yml                         | 4 ++--
 mgmt/imgmgr/pkg.yml                       | 4 ++--
 mgmt/newtmgr/pkg.yml                      | 4 ++--
 mgmt/newtmgr/transport/ble/pkg.yml        | 4 ++--
 mgmt/newtmgr/transport/nmgr_shell/pkg.yml | 4 ++--
 mgmt/newtmgr/transport/nmgr_uart/pkg.yml  | 4 ++--
 mgmt/oicmgr/pkg.yml                       | 4 ++--
 net/ip/native_sockets/pkg.yml             | 4 ++--
 net/nimble/controller/pkg.yml             | 4 ++--
 net/nimble/host/pkg.yml                   | 4 ++--
 net/nimble/host/services/ans/pkg.yml      | 4 ++--
 net/nimble/host/services/bleuart/pkg.yml  | 4 ++--
 net/nimble/host/services/gap/pkg.yml      | 4 ++--
 net/nimble/host/services/gatt/pkg.yml     | 4 ++--
 net/nimble/host/services/ias/pkg.yml      | 4 ++--
 net/nimble/host/services/tps/pkg.yml      | 4 ++--
 net/nimble/host/store/ram/pkg.yml         | 4 ++--
 net/nimble/transport/ram/pkg.yml          | 4 ++--
 net/nimble/transport/uart/pkg.yml         | 4 ++--
 sys/config/pkg.yml                        | 4 ++--
 sys/console/full/pkg.yml                  | 4 ++--
 sys/flash_map/pkg.yml                     | 4 ++--
 sys/id/pkg.yml                            | 4 ++--
 sys/log/full/pkg.yml                      | 4 ++--
 sys/mfg/pkg.yml                           | 4 ++--
 sys/reboot/pkg.yml                        | 4 ++--
 sys/shell/pkg.yml                         | 4 ++--
 sys/stats/full/pkg.yml                    | 4 ++--
 test/crash_test/pkg.yml                   | 4 ++--
 test/runtest/pkg.yml                      | 4 ++--
 33 files changed, 66 insertions(+), 66 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/blob/eced03f2/boot/split/pkg.yml
----------------------------------------------------------------------
diff --git a/boot/split/pkg.yml b/boot/split/pkg.yml
index 6948235..85eab7b 100644
--- a/boot/split/pkg.yml
+++ b/boot/split/pkg.yml
@@ -27,5 +27,5 @@ pkg.keywords:
 pkg.deps: 
     - boot/bootutil
 
-pkg.init_function: split_app_init
-pkg.init_stage: 5
+pkg.init:
+    split_app_init: 500

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/blob/eced03f2/fs/fatfs/pkg.yml
----------------------------------------------------------------------
diff --git a/fs/fatfs/pkg.yml b/fs/fatfs/pkg.yml
index 64fa8f3..3e5e493 100644
--- a/fs/fatfs/pkg.yml
+++ b/fs/fatfs/pkg.yml
@@ -36,5 +36,5 @@ pkg.req_apis:
     - log
     - stats
 
-pkg.init_function: fatfs_pkg_init
-pkg.init_stage: 2
+pkg.init:
+    fatfs_pkg_init: 200

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/blob/eced03f2/fs/nffs/pkg.yml
----------------------------------------------------------------------
diff --git a/fs/nffs/pkg.yml b/fs/nffs/pkg.yml
index 7ce2c2c..b43210d 100644
--- a/fs/nffs/pkg.yml
+++ b/fs/nffs/pkg.yml
@@ -37,5 +37,5 @@ pkg.req_apis:
     - log
     - stats
 
-pkg.init_function: nffs_pkg_init
-pkg.init_stage: 2
+pkg.init:
+    nffs_pkg_init: 200

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/blob/eced03f2/kernel/os/pkg.yml
----------------------------------------------------------------------
diff --git a/kernel/os/pkg.yml b/kernel/os/pkg.yml
index 896ed5e..5eebc09 100644
--- a/kernel/os/pkg.yml
+++ b/kernel/os/pkg.yml
@@ -36,5 +36,5 @@ pkg.deps.OS_CLI:
 pkg.deps.OS_COREDUMP:
     - sys/coredump
 
-pkg.init_function: os_pkg_init
-pkg.init_stage: 0
+pkg.init:
+    os_pkg_init: 0

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/blob/eced03f2/mgmt/imgmgr/pkg.yml
----------------------------------------------------------------------
diff --git a/mgmt/imgmgr/pkg.yml b/mgmt/imgmgr/pkg.yml
index bfe30f9..9510f7d 100644
--- a/mgmt/imgmgr/pkg.yml
+++ b/mgmt/imgmgr/pkg.yml
@@ -42,5 +42,5 @@ pkg.deps.IMGMGR_COREDUMP:
 pkg.deps.IMGMGR_SHELL:
     - sys/shell
 
-pkg.init_function: imgmgr_module_init
-pkg.init_stage: 5
+pkg.init:
+    imgmgr_module_init: 500

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/blob/eced03f2/mgmt/newtmgr/pkg.yml
----------------------------------------------------------------------
diff --git a/mgmt/newtmgr/pkg.yml b/mgmt/newtmgr/pkg.yml
index 12e5c33..8d55664 100644
--- a/mgmt/newtmgr/pkg.yml
+++ b/mgmt/newtmgr/pkg.yml
@@ -36,5 +36,5 @@ pkg.deps.NEWTMGR_BLE_HOST:
 pkg.apis:
     - newtmgr
 
-pkg.init_function: nmgr_pkg_init
-pkg.init_stage: 5
+pkg.init:
+    nmgr_pkg_init: 500

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/blob/eced03f2/mgmt/newtmgr/transport/ble/pkg.yml
----------------------------------------------------------------------
diff --git a/mgmt/newtmgr/transport/ble/pkg.yml 
b/mgmt/newtmgr/transport/ble/pkg.yml
index 54c0ba5..571ed9c 100644
--- a/mgmt/newtmgr/transport/ble/pkg.yml
+++ b/mgmt/newtmgr/transport/ble/pkg.yml
@@ -31,5 +31,5 @@ pkg.deps:
     - mgmt/newtmgr
     - net/nimble/host
 
-pkg.init_function: newtmgr_ble_pkg_init
-pkg.init_stage: 5
+pkg.init:
+    newtmgr_ble_pkg_init: 501

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/blob/eced03f2/mgmt/newtmgr/transport/nmgr_shell/pkg.yml
----------------------------------------------------------------------
diff --git a/mgmt/newtmgr/transport/nmgr_shell/pkg.yml 
b/mgmt/newtmgr/transport/nmgr_shell/pkg.yml
index e56b2db..4f2c4f9 100644
--- a/mgmt/newtmgr/transport/nmgr_shell/pkg.yml
+++ b/mgmt/newtmgr/transport/nmgr_shell/pkg.yml
@@ -30,5 +30,5 @@ pkg.deps:
     - sys/shell
     - mgmt/newtmgr
 
-pkg.init_function: nmgr_shell_pkg_init
-pkg.init_stage: 5
+pkg.init_function:
+    nmgr_shell_pkg_init: 501

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/blob/eced03f2/mgmt/newtmgr/transport/nmgr_uart/pkg.yml
----------------------------------------------------------------------
diff --git a/mgmt/newtmgr/transport/nmgr_uart/pkg.yml 
b/mgmt/newtmgr/transport/nmgr_uart/pkg.yml
index 449e3ef..55ade54 100644
--- a/mgmt/newtmgr/transport/nmgr_uart/pkg.yml
+++ b/mgmt/newtmgr/transport/nmgr_uart/pkg.yml
@@ -30,5 +30,5 @@ pkg.deps:
     - hw/drivers/uart
     - mgmt/newtmgr
 
-pkg.init_function: nmgr_uart_pkg_init
-pkg.init_stage: 5
+pkg.init:
+    nmgr_uart_pkg_init: 501

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/blob/eced03f2/mgmt/oicmgr/pkg.yml
----------------------------------------------------------------------
diff --git a/mgmt/oicmgr/pkg.yml b/mgmt/oicmgr/pkg.yml
index 6dd38ec..9e8470d 100644
--- a/mgmt/oicmgr/pkg.yml
+++ b/mgmt/oicmgr/pkg.yml
@@ -32,5 +32,5 @@ pkg.deps:
 pkg.apis:
     - newtmgr
 
-pkg.init_function: oicmgr_init
-pkg.init_stage: 5
+pkg.init:
+    oicmgr_init: 500

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/blob/eced03f2/net/ip/native_sockets/pkg.yml
----------------------------------------------------------------------
diff --git a/net/ip/native_sockets/pkg.yml b/net/ip/native_sockets/pkg.yml
index 003fd3f..f859872 100644
--- a/net/ip/native_sockets/pkg.yml
+++ b/net/ip/native_sockets/pkg.yml
@@ -29,5 +29,5 @@ pkg.deps:
     - kernel/os
     - net/ip/mn_socket
 
-pkg.init_function: native_sock_init
-pkg.init_stage: 2
+pkg.init:
+    native_sock_init: 200

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/blob/eced03f2/net/nimble/controller/pkg.yml
----------------------------------------------------------------------
diff --git a/net/nimble/controller/pkg.yml b/net/nimble/controller/pkg.yml
index 2a88df6..63d596f 100644
--- a/net/nimble/controller/pkg.yml
+++ b/net/nimble/controller/pkg.yml
@@ -34,5 +34,5 @@ pkg.deps:
     - kernel/os
     - net/nimble
 
-pkg.init_function: ble_ll_init
-pkg.init_stage: 2
+pkg.init:
+    ble_ll_init: 200

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/blob/eced03f2/net/nimble/host/pkg.yml
----------------------------------------------------------------------
diff --git a/net/nimble/host/pkg.yml b/net/nimble/host/pkg.yml
index d025934..b62c2a1 100644
--- a/net/nimble/host/pkg.yml
+++ b/net/nimble/host/pkg.yml
@@ -42,5 +42,5 @@ pkg.req_apis:
     - log
     - stats
 
-pkg.init_function: "ble_hs_init"
-pkg.init_stage: 2
+pkg.init:
+    ble_hs_init: 200

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/blob/eced03f2/net/nimble/host/services/ans/pkg.yml
----------------------------------------------------------------------
diff --git a/net/nimble/host/services/ans/pkg.yml 
b/net/nimble/host/services/ans/pkg.yml
index 41a738c..db4b945 100644
--- a/net/nimble/host/services/ans/pkg.yml
+++ b/net/nimble/host/services/ans/pkg.yml
@@ -30,5 +30,5 @@ pkg.keywords:
 pkg.deps:
     - net/nimble/host
 
-pkg.init_function: ble_svc_ans_init
-pkg.init_stage: 3
+pkg.init:
+    ble_svc_ans_init: 300

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/blob/eced03f2/net/nimble/host/services/bleuart/pkg.yml
----------------------------------------------------------------------
diff --git a/net/nimble/host/services/bleuart/pkg.yml 
b/net/nimble/host/services/bleuart/pkg.yml
index 9850125..a957ad0 100644
--- a/net/nimble/host/services/bleuart/pkg.yml
+++ b/net/nimble/host/services/bleuart/pkg.yml
@@ -33,5 +33,5 @@ pkg.deps:
 pkg.req_apis:
     - console
 
-pkg.init_function: bleuart_init
-pkg.init_stage: 5
+pkg.init:
+    bleuart_init: 500

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/blob/eced03f2/net/nimble/host/services/gap/pkg.yml
----------------------------------------------------------------------
diff --git a/net/nimble/host/services/gap/pkg.yml 
b/net/nimble/host/services/gap/pkg.yml
index 376a555..6e4c09c 100644
--- a/net/nimble/host/services/gap/pkg.yml
+++ b/net/nimble/host/services/gap/pkg.yml
@@ -30,5 +30,5 @@ pkg.keywords:
 pkg.deps:
     - net/nimble/host
 
-pkg.init_function: ble_svc_gap_init
-pkg.init_stage: 3
+pkg.init:
+    ble_svc_gap_init: 300

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/blob/eced03f2/net/nimble/host/services/gatt/pkg.yml
----------------------------------------------------------------------
diff --git a/net/nimble/host/services/gatt/pkg.yml 
b/net/nimble/host/services/gatt/pkg.yml
index ec0eb1e..805acae 100644
--- a/net/nimble/host/services/gatt/pkg.yml
+++ b/net/nimble/host/services/gatt/pkg.yml
@@ -30,5 +30,5 @@ pkg.keywords:
 pkg.deps:
     - net/nimble/host
 
-pkg.init_function: ble_svc_gatt_init
-pkg.init_stage: 3
+pkg.init:
+    ble_svc_gatt_init: 300

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/blob/eced03f2/net/nimble/host/services/ias/pkg.yml
----------------------------------------------------------------------
diff --git a/net/nimble/host/services/ias/pkg.yml 
b/net/nimble/host/services/ias/pkg.yml
index 3879906..ca5a5b7 100644
--- a/net/nimble/host/services/ias/pkg.yml
+++ b/net/nimble/host/services/ias/pkg.yml
@@ -30,5 +30,5 @@ pkg.keywords:
 pkg.deps:
     - net/nimble/host
 
-pkg.init_function: ble_svc_ias_init
-pkg.init_stage: 3
+pkg.init:
+    ble_svc_ias_init: 300

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/blob/eced03f2/net/nimble/host/services/tps/pkg.yml
----------------------------------------------------------------------
diff --git a/net/nimble/host/services/tps/pkg.yml 
b/net/nimble/host/services/tps/pkg.yml
index 17b2b87..fbabc9e 100644
--- a/net/nimble/host/services/tps/pkg.yml
+++ b/net/nimble/host/services/tps/pkg.yml
@@ -30,5 +30,5 @@ pkg.keywords:
 pkg.deps:
     - net/nimble/host
 
-pkg.init_function: ble_svc_tps_init
-pkg.init_stage: 3
+pkg.init:
+    ble_svc_tps_init: 300

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/blob/eced03f2/net/nimble/host/store/ram/pkg.yml
----------------------------------------------------------------------
diff --git a/net/nimble/host/store/ram/pkg.yml 
b/net/nimble/host/store/ram/pkg.yml
index afa638f..276afa6 100644
--- a/net/nimble/host/store/ram/pkg.yml
+++ b/net/nimble/host/store/ram/pkg.yml
@@ -30,5 +30,5 @@ pkg.keywords:
 pkg.deps:
     - net/nimble/host
 
-pkg.init_function: ble_store_ram_init
-pkg.init_stage: 5
+pkg.init:
+    ble_store_ram_init: 500

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/blob/eced03f2/net/nimble/transport/ram/pkg.yml
----------------------------------------------------------------------
diff --git a/net/nimble/transport/ram/pkg.yml b/net/nimble/transport/ram/pkg.yml
index 60d9d96..29dd9ec 100644
--- a/net/nimble/transport/ram/pkg.yml
+++ b/net/nimble/transport/ram/pkg.yml
@@ -32,5 +32,5 @@ pkg.deps:
 pkg.apis:
     - ble_transport
 
-pkg.init_function: ble_hci_ram_pkg_init
-pkg.init_stage: 1
+pkg.init:
+    ble_hci_ram_pkg_init: 100

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/blob/eced03f2/net/nimble/transport/uart/pkg.yml
----------------------------------------------------------------------
diff --git a/net/nimble/transport/uart/pkg.yml 
b/net/nimble/transport/uart/pkg.yml
index be76509..33ce3a2 100644
--- a/net/nimble/transport/uart/pkg.yml
+++ b/net/nimble/transport/uart/pkg.yml
@@ -34,5 +34,5 @@ pkg.deps:
 pkg.apis:
     - ble_transport
 
-pkg.init_function: ble_hci_uart_init
-pkg.init_stage: 5
+pkg.init:
+    ble_hci_uart_init: 500

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/blob/eced03f2/sys/config/pkg.yml
----------------------------------------------------------------------
diff --git a/sys/config/pkg.yml b/sys/config/pkg.yml
index ac7b15a..0b88781 100644
--- a/sys/config/pkg.yml
+++ b/sys/config/pkg.yml
@@ -35,5 +35,5 @@ pkg.deps.CONFIG_FCB:
 pkg.deps.CONFIG_NFFS:
     - fs/nffs
 
-pkg.init_function: config_pkg_init
-pkg.init_stage: 3
+pkg.init:
+    config_pkg_init: 300

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/blob/eced03f2/sys/console/full/pkg.yml
----------------------------------------------------------------------
diff --git a/sys/console/full/pkg.yml b/sys/console/full/pkg.yml
index 3ad880a..6a2fd36 100644
--- a/sys/console/full/pkg.yml
+++ b/sys/console/full/pkg.yml
@@ -29,5 +29,5 @@ pkg.deps:
     - hw/drivers/uart
 pkg.apis: console
 
-pkg.init_function: console_pkg_init
-pkg.init_stage: 0
+pkg.init:
+    console_pkg_init: 1

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/blob/eced03f2/sys/flash_map/pkg.yml
----------------------------------------------------------------------
diff --git a/sys/flash_map/pkg.yml b/sys/flash_map/pkg.yml
index 16f8bc0..55e826d 100644
--- a/sys/flash_map/pkg.yml
+++ b/sys/flash_map/pkg.yml
@@ -29,5 +29,5 @@ pkg.deps:
     - sys/defs
     - sys/mfg
 
-pkg.init_function: flash_map_init
-pkg.init_stage: 0
+pkg.init:
+    flash_map_init: 1

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/blob/eced03f2/sys/id/pkg.yml
----------------------------------------------------------------------
diff --git a/sys/id/pkg.yml b/sys/id/pkg.yml
index c9499dc..582f941 100644
--- a/sys/id/pkg.yml
+++ b/sys/id/pkg.yml
@@ -33,5 +33,5 @@ pkg.deps:
     - sys/mfg
     - encoding/base64
 
-pkg.init_function: id_init
-pkg.init_stage: 5
+pkg.init:
+    id_init: 500

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/blob/eced03f2/sys/log/full/pkg.yml
----------------------------------------------------------------------
diff --git a/sys/log/full/pkg.yml b/sys/log/full/pkg.yml
index b905076..55536b8 100644
--- a/sys/log/full/pkg.yml
+++ b/sys/log/full/pkg.yml
@@ -40,5 +40,5 @@ pkg.deps.LOG_NEWTMGR:
 pkg.apis:
     - log
 
-pkg.init_function: log_init
-pkg.init_stage: 1
+pkg.init:
+    log_init: 100

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/blob/eced03f2/sys/mfg/pkg.yml
----------------------------------------------------------------------
diff --git a/sys/mfg/pkg.yml b/sys/mfg/pkg.yml
index 4c999dc..b017a4d 100644
--- a/sys/mfg/pkg.yml
+++ b/sys/mfg/pkg.yml
@@ -29,5 +29,5 @@ pkg.deps:
     - sys/flash_map
 
 # sys/flash_map must get initialized before sys/mfg.
-pkg.init_function: mfg_init
-pkg.init_stage: 1
+pkg.init:
+    mfg_init: 100

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/blob/eced03f2/sys/reboot/pkg.yml
----------------------------------------------------------------------
diff --git a/sys/reboot/pkg.yml b/sys/reboot/pkg.yml
index 085e19a..cc22051 100644
--- a/sys/reboot/pkg.yml
+++ b/sys/reboot/pkg.yml
@@ -36,5 +36,5 @@ pkg.req_apis:
     - log
     - console
 
-pkg.init_function: log_reboot_pkg_init
-pkg.init_stage: 2
+pkg.init:
+    log_reboot_pkg_init: 200

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/blob/eced03f2/sys/shell/pkg.yml
----------------------------------------------------------------------
diff --git a/sys/shell/pkg.yml b/sys/shell/pkg.yml
index 02d9810..39d46b1 100644
--- a/sys/shell/pkg.yml
+++ b/sys/shell/pkg.yml
@@ -31,5 +31,5 @@ pkg.deps:
 pkg.req_apis:
     - console
 
-pkg.init_function: shell_init
-pkg.init_stage: 5
+pkg.init:
+    shell_init: 500

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/blob/eced03f2/sys/stats/full/pkg.yml
----------------------------------------------------------------------
diff --git a/sys/stats/full/pkg.yml b/sys/stats/full/pkg.yml
index ee80238..6c92dde 100644
--- a/sys/stats/full/pkg.yml
+++ b/sys/stats/full/pkg.yml
@@ -33,5 +33,5 @@ pkg.deps.STATS_CLI:
 pkg.deps.STATS_NEWTMGR:
     - mgmt/mgmt
 
-pkg.init_function: stats_module_init
-pkg.init_stage: 0
+pkg.init:
+    stats_module_init: 0

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/blob/eced03f2/test/crash_test/pkg.yml
----------------------------------------------------------------------
diff --git a/test/crash_test/pkg.yml b/test/crash_test/pkg.yml
index 8d406ed..563304f 100644
--- a/test/crash_test/pkg.yml
+++ b/test/crash_test/pkg.yml
@@ -32,5 +32,5 @@ pkg.deps.CRASH_TEST_NEWTMGR:
 pkg.deps.CRASH_TEST_NEWTMGR:
     - encoding/json
 
-pkg.init_function: crash_test_init
-pkg.init_stage: 5
+pkg.init:
+    crash_test_init: 500

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/blob/eced03f2/test/runtest/pkg.yml
----------------------------------------------------------------------
diff --git a/test/runtest/pkg.yml b/test/runtest/pkg.yml
index e64f12a..5919270 100644
--- a/test/runtest/pkg.yml
+++ b/test/runtest/pkg.yml
@@ -32,5 +32,5 @@ pkg.deps.RUNTEST_NEWTMGR:
 pkg.deps.RUNTEST_NEWTMGR:
     - encoding/json
 
-pkg.init_function: runtest_init
-pkg.init_stage: 5
+pkg.init:
+    runtest_init: 500

Reply via email to