mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2024-11-12 02:01:02 +01:00
Changed PACKAGE2_MAXVER_400_CURRENT to PACKAGE2_MAXVER_400_410. (#64)
* Changed PACKAGE2_MAXVER_400_CURRENT to PACKAGE2_MAXVER_400_410. * Added top-level makefile and a .gitignore for thermosphere build files.
This commit is contained in:
parent
8114a52d13
commit
0075a42d39
10
Makefile
Normal file
10
Makefile
Normal file
@ -0,0 +1,10 @@
|
||||
SUBFOLDERS := exosphere fusee/fusee-primary fusee/fusee-secondary stratosphere/libstratosphere thermosphere
|
||||
|
||||
TOPTARGETS := all clean
|
||||
|
||||
$(TOPTARGETS): $(SUBFOLDERS)
|
||||
|
||||
$(SUBFOLDERS):
|
||||
$(MAKE) -C $@ $(MAKECMDGOALS)
|
||||
|
||||
.PHONY: $(TOPTARGETS) $(SUBFOLDERS)
|
@ -66,7 +66,7 @@ uint32_t configitem_get(ConfigItem item, uint64_t *p_outvalue) {
|
||||
break;
|
||||
case CONFIGITEM_VERSION:
|
||||
/* Always returns maxver - 1 on hardware. */
|
||||
*p_outvalue = PACKAGE2_MAXVER_400_CURRENT - 1;
|
||||
*p_outvalue = PACKAGE2_MAXVER_400_410 - 1;
|
||||
break;
|
||||
case CONFIGITEM_HARDWARETYPE:
|
||||
*p_outvalue = fuse_get_hardware_type();
|
||||
|
1
thermosphere/.gitignore
vendored
Normal file
1
thermosphere/.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
||||
out
|
Loading…
Reference in New Issue
Block a user