forked from LiBwrt/openwrt-6.x
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This tool will load the uboot environment to /var/run/uboot-env/. This allows more efficient use when accessing multiple variables. Signed-off-by: John Crispin <[email protected]>
- Loading branch information
Showing
2 changed files
with
27 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
#!/usr/bin/ucode | ||
|
||
'use strict'; | ||
|
||
const path = '/var/run/uboot-env/'; | ||
|
||
import * as fs from 'fs'; | ||
|
||
if (fs.lsdir(path)) { | ||
warn(`env has already been loaded to ${path}\n`); | ||
exit(0); | ||
} | ||
|
||
let fp = fs.popen('fw_printenv'); | ||
let raw = fp.read('all'); | ||
fp.close(); | ||
|
||
if (!length(raw)) | ||
exit(0); | ||
|
||
fs.mkdir(path); | ||
for (let line in split(raw, '\n')) { | ||
let vals = split(line, '='); | ||
if (vals[0] && vals[1]) | ||
fs.writefile(path + vals[0], vals[1]); | ||
} |