aboutsummaryrefslogtreecommitdiffstats
path: root/meta-selftest/recipes-test/postinst/postinstp_1.0.bb
blob: 493b92d7ab06b6c7b4a0092094648c2133e4e776 (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} = "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/postinstd-test ; then
          echo 'success' > /etc/postinstp-test
      else
          echo 'fail to install postinstd first!' >&2
          exit 1
      fi
   fi
}