Skip to content

Commit 27439ea

Browse files
committed
add fyde-kiosk-demo
1 parent a61a679 commit 27439ea

File tree

9 files changed

+81
-2
lines changed

9 files changed

+81
-2
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# Copyright (c) 2018 The Fyde OS Authors. All rights reserved.
2+
# Distributed under the terms of the BSD
3+
4+
EAPI="5"
5+
6+
DESCRIPTION="empty project"
7+
HOMEPAGE="http://fydeos.com"
8+
9+
LICENSE="BSD-Google"
10+
SLOT="0"
11+
KEYWORDS="*"
12+
IUSE="+kiosk_demo"
13+
14+
RDEPEND="
15+
kiosk_demo? ( chromeos-base/fyde-kiosk-demo
16+
chromeos-base/power_wash_command )
17+
"
18+
19+
DEPEND="${RDEPEND}"
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"AppId" : "kcdnoglonapgfllkihkgageoililgckl",
3+
"AppPath" : "kiosk-demo-app",
4+
"Enable" : true
5+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# Copyright (c) 2018 The Fyde OS Authors. All rights reserved.
2+
# Distributed under the terms of the BSD
3+
4+
EAPI="5"
5+
EGIT_REPO_URI="https://github.com/FydeOS/kiosk-demo-app.git"
6+
7+
inherit git-r3
8+
DESCRIPTION="demo app for fyde kiosk"
9+
HOMEPAGE="http://fydeos.com"
10+
11+
LICENSE="BSD-Google"
12+
SLOT="0"
13+
KEYWORDS="*"
14+
IUSE=""
15+
16+
RDEPEND=""
17+
18+
DEPEND="${RDEPEND}"
19+
20+
src_install() {
21+
insinto /usr/local/share/kiosk_app
22+
doins ${FILESDIR}/config.json
23+
insinto /usr/local/share/kiosk_app/kiosk-demo-app
24+
doins -r *
25+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#!/bin/bash
2+
echo 'clobber' > /mnt/stateful_partition/.update_available
3+
echo 'please reboot to powerwash the stateful_partition'
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# Copyright (c) 2018 The Fyde OS Authors. All rights reserved.
2+
# Distributed under the terms of the BSD
3+
4+
EAPI="4"
5+
6+
DESCRIPTION="add power wash command to usr/local/sbin"
7+
HOMEPAGE="http://fydeos.com"
8+
9+
LICENSE="BSD-Google"
10+
SLOT="0"
11+
KEYWORDS="*"
12+
IUSE=""
13+
14+
RDEPEND=""
15+
16+
DEPEND="${RDEPEND}"
17+
18+
S=${WORKDIR}
19+
20+
src_install() {
21+
exeinto /usr/sbin
22+
doexe ${FILESDIR}/clobber
23+
}

Diff for: overlay-rpi3/virtual/chromeos-bsp/chromeos-bsp-0.0.1.ebuild

+3-1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ SLOT="0"
1111
KEYWORDS="*"
1212
IUSE=""
1313

14-
RDEPEND="chromeos-base/chromeos-bsp-rpi3"
14+
RDEPEND="
15+
chromeos-base/baseboard-bsp
16+
chromeos-base/chromeos-bsp-rpi3"
1517

1618
DEPEND="${RDEPEND}"

Diff for: overlay-rpi4/virtual/chromeos-bsp/chromeos-bsp-0.0.1.ebuild

+3-1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ SLOT="0"
1111
KEYWORDS="*"
1212
IUSE=""
1313

14-
RDEPEND="chromeos-base/chromeos-bsp-rpi4"
14+
RDEPEND="
15+
chromeos-base/baseboard-bsp
16+
chromeos-base/chromeos-bsp-rpi4"
1517

1618
DEPEND="${RDEPEND}"

0 commit comments

Comments
 (0)