From 0075a42d397e2909d42a6043bcfc8a6ae164e183 Mon Sep 17 00:00:00 2001 From: Naomi Peori Date: Mon, 23 Apr 2018 15:07:49 -0300 Subject: [PATCH] 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. --- Makefile | 10 ++++++++++ exosphere/src/configitem.c | 2 +- thermosphere/.gitignore | 1 + 3 files changed, 12 insertions(+), 1 deletion(-) create mode 100644 Makefile create mode 100644 thermosphere/.gitignore diff --git a/Makefile b/Makefile new file mode 100644 index 000000000..54ea31ca7 --- /dev/null +++ b/Makefile @@ -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) diff --git a/exosphere/src/configitem.c b/exosphere/src/configitem.c index 17f1c1afc..79c351338 100644 --- a/exosphere/src/configitem.c +++ b/exosphere/src/configitem.c @@ -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(); diff --git a/thermosphere/.gitignore b/thermosphere/.gitignore new file mode 100644 index 000000000..1fcb1529f --- /dev/null +++ b/thermosphere/.gitignore @@ -0,0 +1 @@ +out