Because of a fail logic here if we call
RootTools.getBusyBoxApplets()
It will be the same as calling RootTools.getBusyBoxApplets("/") which is wrong.
To fix it simply do this for InternalMethod.getBusyBoxApplets(String path)
static List<String> getBusyBoxApplets(String path) throws Exception {
if (path != null && !path.endsWith("/") && !path.isEmpty()) {
path += "/";
}
"&& !path.isEmpty()" is what missing.
Original issue reported on code.google.com by thuanb...@gmail.com on 27 Dec 2012 at 12:25
Original issue reported on code.google.com by
thuanb...@gmail.com
on 27 Dec 2012 at 12:25