You cannot, at least not without some terrible hack.
You cannot create an existing root process, it must be that way from its creation.
Android applications run inside the Dalvik machine in a process that drops a process called Zygote, which maps many system libraries to memory, so children inherit shared copies. You need to modify zygote in some way to say that it leaves a new forked root root directory, rather than downgrading it to the application user.
source share