-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Changed battery icons and added GBA emulator
- Loading branch information
Showing
19 changed files
with
46 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file added
BIN
+24.8 KB
...ard/simplyRetro/z5/fsoverlay/root/.emulationstation/romsplash/gba/launching.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+0 Bytes
(100%)
buildroot/board/simplyRetro/z5/fsoverlay/root/.retropower/battery-10.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+2 Bytes
(100%)
buildroot/board/simplyRetro/z5/fsoverlay/root/.retropower/battery-20.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-2 Bytes
(99%)
buildroot/board/simplyRetro/z5/fsoverlay/root/.retropower/battery-30.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-11 Bytes
(96%)
buildroot/board/simplyRetro/z5/fsoverlay/root/.retropower/battery-40.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-8 Bytes
(97%)
buildroot/board/simplyRetro/z5/fsoverlay/root/.retropower/battery-50.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-9 Bytes
(96%)
buildroot/board/simplyRetro/z5/fsoverlay/root/.retropower/battery-60.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-19 Bytes
(93%)
buildroot/board/simplyRetro/z5/fsoverlay/root/.retropower/battery-70.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-14 Bytes
(95%)
buildroot/board/simplyRetro/z5/fsoverlay/root/.retropower/battery-80.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-19 Bytes
(93%)
buildroot/board/simplyRetro/z5/fsoverlay/root/.retropower/battery-90.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-145 Bytes
(66%)
buildroot/board/simplyRetro/z5/fsoverlay/root/.retropower/battery-alert.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+40 Bytes
(110%)
buildroot/board/simplyRetro/z5/fsoverlay/root/.retropower/battery-charging.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-25 Bytes
(91%)
buildroot/board/simplyRetro/z5/fsoverlay/root/.retropower/battery.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
config BR2_PACKAGE_LIBRETRO_GPSP | ||
bool "libretro-gpsp" | ||
depends on BR2_PACKAGE_RETROARCH | ||
depends on BR2_INSTALL_LIBSTDCPP | ||
help | ||
A libretro GBA emulator core for ARM. | ||
|
||
http://www.libretro.com | ||
|
||
comment "LIBRETRO_GPSP needs a toolchain w/ C++" | ||
depends on !BR2_INSTALL_LIBSTDCPP |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
################################################################################ | ||
# | ||
# GPSP | ||
# | ||
################################################################################ | ||
|
||
LIBRETRO_GPSP_VERSION = 19aed0288d5ca154be28c54f71769dfd80342b78 | ||
LIBRETRO_GPSP_SITE = $(call github,libretro,gpsp,$(LIBRETRO_GPSP_VERSION)) | ||
|
||
define LIBRETRO_GPSP_BUILD_CMDS | ||
CFLAGS="$(TARGET_CFLAGS)" CXXFLAGS="$(TARGET_CXXFLAGS)" \ | ||
$(MAKE) CXX="$(TARGET_CXX)" CC="$(TARGET_CC)" -C $(@D) platform="$(RETROARCH_LIBRETRO_BOARD)" OPTIMIZE="$(COMPILER_COMMONS_LDFLAGS_SO)" | ||
endef | ||
|
||
define LIBRETRO_GPSP_INSTALL_TARGET_CMDS | ||
$(INSTALL) -D $(@D)/gpsp_libretro.so \ | ||
$(TARGET_DIR)/usr/lib/libretro/gpsp_libretro.so | ||
endef | ||
|
||
$(eval $(generic-package)) |