tweak for making firmware
parent
80dc05bc3c
commit
917ed6bb67
|
|
@ -19,6 +19,13 @@ var APPS = [ // IDs of apps to install
|
||||||
var MINIFY = true;
|
var MINIFY = true;
|
||||||
|
|
||||||
var fs = require("fs");
|
var fs = require("fs");
|
||||||
|
global.Const = {
|
||||||
|
/* Are we only putting a single app on a device? If so
|
||||||
|
apps should all be saved as .bootcde and we write info
|
||||||
|
about the current app into app.info */
|
||||||
|
SINGLE_APP_ONLY : false,
|
||||||
|
};
|
||||||
|
|
||||||
var AppInfo = require(ROOTDIR+"/core/js/appinfo.js");
|
var AppInfo = require(ROOTDIR+"/core/js/appinfo.js");
|
||||||
var appjson = JSON.parse(fs.readFileSync(APPJSON).toString());
|
var appjson = JSON.parse(fs.readFileSync(APPJSON).toString());
|
||||||
var appfiles = [];
|
var appfiles = [];
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue