aboutsummaryrefslogtreecommitdiffstats
path: root/meta-selftest/recipes-test/postinstb/postinstb_1.0.bb
blob: 447d77797db64ca47951f215f640a64732fbdef8 (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} = "postinsta"

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