diff --git a/Makefile b/Makefile index 31af60898..56f2ce87d 100644 --- a/Makefile +++ b/Makefile @@ -120,8 +120,8 @@ koboupdate: all cd $(INSTALL_DIR)/kobo && tar -czhf ../KoboRoot.tgz mnt cp resources/koreader.png $(INSTALL_DIR)/koreader.png cp kobo/fmon/README.txt $(INSTALL_DIR)/README_kobo.txt - cp kobo/koreader_kobo.sh $(INSTALL_DIR)/koreader - cp kobo/kobo_suspend.sh $(INSTALL_DIR)/koreader + cp kobo/koreader.sh $(INSTALL_DIR)/koreader + cp kobo/suspend.sh $(INSTALL_DIR)/koreader cp kobo/*.bin $(INSTALL_DIR)/koreader # create new package cd $(INSTALL_DIR) && \ diff --git a/frontend/ui/device.lua b/frontend/ui/device.lua index 5d604cb86..37192cfe5 100644 --- a/frontend/ui/device.lua +++ b/frontend/ui/device.lua @@ -189,7 +189,7 @@ function Device:prepareSuspend() -- currently only used for kobo devices end function Device:Suspend() -- currently only used for kobo devices - os.execute("./kobo_suspend.sh") + os.execute("./suspend.sh") end function Device:Resume() -- currently only used for kobo devices diff --git a/kobo/fmon/koreader.sh b/kobo/fmon/koreader.sh index 03ba8f433..e4b0011da 100644 --- a/kobo/fmon/koreader.sh +++ b/kobo/fmon/koreader.sh @@ -1 +1 @@ -$root/.kobo/fmon/fmon $root/koreader.png $root/.kobo/koreader/koreader_kobo.sh & +$root/.kobo/fmon/fmon $root/koreader.png $root/.kobo/koreader/koreader.sh & diff --git a/kobo/koreader_kobo.sh b/kobo/koreader.sh similarity index 100% rename from kobo/koreader_kobo.sh rename to kobo/koreader.sh diff --git a/kobo/kobo_suspend.sh b/kobo/suspend.sh similarity index 100% rename from kobo/kobo_suspend.sh rename to kobo/suspend.sh