diff options
-rwxr-xr-x | install | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -837,6 +837,9 @@ def mount_in_bootenv(): call(['mount', '-F' , 'fd', '-', rootdir + '/dev/fd'], stdout=PIPE, stderr=PIPE) call(['mount', '-F' , 'proc', '-', rootdir + '/proc'], stdout=PIPE, stderr=PIPE) + # /home is rpool/home, we need this to create a regular user: + call(['mount', '-F' , 'lofs', '/mnt/'+rpool+'/home', rootdir + '/home'], stdout=PIPE, stderr=PIPE) + def set_root_password(): entry1 = Entry(width=30, password=1, returnExit=0) entry2 = Entry(width=30, password=1, returnExit=1) |