aboutsummaryrefslogtreecommitdiffstats
path: root/meta-selftest/recipes-test/postinst/postinstd_1.0.bb
blob: e649c0edb16253cbeef0a85b2dd4bde00aed4e3c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
SUMMARY = "Device formfactor information"
SECTION = "base"
LICENSE = "MIT"

RDEPENDS_${PN} = "postinstb"

ALLOW_EMPTY_${PN} = "1"

pkg_postinst_${PN} () {
   if test "x$D" != "x"; then
      # Need to run on first boot
      exit 1
   else
      if test -e /etc/postinstb-test ; then
          echo 'success' > /etc/postinstd-test
      else
          echo 'fail to install postinstb first!' >&2
          exit 1
      fi
   fi
}