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

RDEPENDS_${PN} = "postinstd"

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/z-test ; then
          echo 'success' > /etc/postinstp-test
      else
          echo 'fail to install postinstd first!' >&2
          exit 1
      fi
   fi
}