Skip to content
This repository has been archived by the owner on May 11, 2018. It is now read-only.

Commit

Permalink
Rename H3-sys-utils to sunxi-sys-utils
Browse files Browse the repository at this point in the history
  • Loading branch information
jernejsk committed Jul 24, 2016
1 parent 54a1b36 commit aabf407
Show file tree
Hide file tree
Showing 12 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion packages/linux/package.mk
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ case "$LINUX" in
PKG_GIT_URL="https://github.com/jernejsk/linux.git"
PKG_GIT_BRANCH="master"
PKG_KEEP_CHECKOUT="yes"
PKG_DEPENDS_TARGET="$PKG_DEPENDS_TARGET sunxi-tools:host H3-sys-utils"
PKG_DEPENDS_TARGET="$PKG_DEPENDS_TARGET sunxi-tools:host sunxi-sys-utils"
;;
*)
PKG_VERSION="4.4.8"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ STORAGE_SIZE=32 # STORAGE_SIZE must be >= 32 !

DISK_SIZE=$(( $SYSTEM_SIZE + $STORAGE_SIZE + 4 ))

. $SYSTEM_ROOT/usr/lib/openelec/H3-system-type
. $SYSTEM_ROOT/usr/lib/openelec/sunxi-system-type

echo ""
echo -e "\033[36m==============================="
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
# along with OpenELEC. If not, see <http://www.gnu.org/licenses/>.
################################################################################

PKG_NAME="H3-sys-utils"
PKG_NAME="sunxi-sys-utils"
PKG_VERSION="1.0"
PKG_REV="1"
PKG_ARCH="arm"
Expand All @@ -26,8 +26,8 @@ PKG_URL=""
PKG_DEPENDS_TARGET="toolchain"
PKG_PRIORITY="optional"
PKG_SECTION="system"
PKG_SHORTDESC="H3 system utilities"
PKG_LONGDESC="H3 utilities for driver loading and eMMC installation"
PKG_SHORTDESC="Sunxi system utilities"
PKG_LONGDESC="Sunxi utilities for driver loading and eMMC installation"
PKG_IS_ADDON="no"
PKG_AUTORECONF="no"

Expand All @@ -45,8 +45,8 @@ makeinstall_target() {
}

post_install() {
enable_service h3-bt-load.service
enable_service h3-wifi-load.service
enable_service h3-poweroff.service
enable_service h3-suspend.service
enable_service sunxi-bt-load.service
enable_service sunxi-wifi-load.service
enable_service sunxi-poweroff.service
enable_service sunxi-suspend.service
}
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[Unit]
Description=h3 poweroff service
Description=sunxi poweroff service
Before=systemd-poweroff.service
After=kodi-poweroff.service
DefaultDependencies=no
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[Unit]
Description=h3 suspend service
Description=sunxi suspend service
Before=sleep.target
StopWhenUnneeded=yes

Expand Down
4 changes: 2 additions & 2 deletions packages/tools/u-boot/scripts/update.sh
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,9 @@ PROJECT=""
if [ -f $SYSTEM_ROOT/usr/lib/openelec/imx6-system-type ]; then
. $SYSTEM_ROOT/usr/lib/openelec/imx6-system-type
fi
if [ -f $SYSTEM_ROOT/usr/lib/openelec/H3-system-type ]; then
if [ -f $SYSTEM_ROOT/usr/lib/openelec/sunxi-system-type ]; then
PROJECT="sunxi"
. $SYSTEM_ROOT/usr/lib/openelec/H3-system-type
. $SYSTEM_ROOT/usr/lib/openelec/sunxi-system-type
fi

# mount $BOOT_ROOT r/w
Expand Down

0 comments on commit aabf407

Please sign in to comment.