Skip to content
Snippets Groups Projects
Commit 1b507505 authored by Stefan Schmidt's avatar Stefan Schmidt
Browse files

Merge branch 'wip/acts' into 'kirkstone'

openharmony-standard_3.0: install system haps in /system/app directory

See merge request eclipse/oniro-core/meta-openharmony!93
parents 698816ca b8b7e638
No related branches found
No related tags found
1 merge request!93openharmony-standard_3.0: install system haps in /system/app directory
Pipeline #14878 passed
......@@ -1974,4 +1974,19 @@ INSANE_SKIP:${PN} += "already-stripped"
inherit useradd
USERADD_PACKAGES = "${PN}"
USERADD_PARAM:${PN} = "-u 1000 -U -s /bin/sh system"
\ No newline at end of file
USERADD_PARAM:${PN} = "-u 1000 -U -s /bin/sh system"
# system haps
PACKAGES =+ "${PN}-systemhaps"
do_install:append() {
install -m 777 -d ${D}/system/app
install -m 666 ${S}/applications/standard/hap/Launcher.hap ${D}/system/app
install -m 666 ${S}/applications/standard/hap/SystemUI-NavigationBar.hap ${D}/system/app
install -m 666 ${S}/applications/standard/hap/SystemUI-StatusBar.hap ${D}/system/app
install -m 666 ${S}/applications/standard/hap/SystemUI-SystemDialog.hap ${D}/system/app
install -m 666 ${S}/applications/standard/hap/Settings.hap ${D}/system/app
}
FILES:${PN}-systemhaps = " \
/system/app/* \
"
RDEPENDS:${PN} += "${PN}-systemhaps"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment