diff options
author | Thomas Backlund <tmb@mageia.org> | 2012-01-08 04:22:42 +0000 |
---|---|---|
committer | Thomas Backlund <tmb@mageia.org> | 2012-01-08 04:22:42 +0000 |
commit | 19099d31828e77376dfc3cae7456ae051e21e134 (patch) | |
tree | 5e9d1c7dc5cbc62652322000faacb81a0618264e | |
parent | 86081909121f85018557f715fcd0a66d8636fd97 (diff) | |
download | drakiso-19099d31828e77376dfc3cae7456ae051e21e134.tar drakiso-19099d31828e77376dfc3cae7456ae051e21e134.tar.gz drakiso-19099d31828e77376dfc3cae7456ae051e21e134.tar.bz2 drakiso-19099d31828e77376dfc3cae7456ae051e21e134.tar.xz drakiso-19099d31828e77376dfc3cae7456ae051e21e134.zip |
revert last commit as the proper fix was to define builddir and chroot in livecd config
-rw-r--r-- | NEWS | 2 | ||||
-rwxr-xr-x | draklive | 3 |
2 files changed, 0 insertions, 5 deletions
@@ -1,5 +1,3 @@ -- make sure /etc, /proc, /sys exists before trying to use them - 1.4: - use gfxboot.c32 as graphical boot loader @@ -240,13 +240,10 @@ sub post_install_system { #- workaround buggy installation of directories that are not owned by any packages umask 022; - mkdir_p($live->get_system_root . '/proc'); - mkdir_p($live->get_system_root . '/sys'); run_('mount', '-t', 'proc', '/proc', $live->get_system_root . '/proc'); run_('mount', '-t', 'sysfs', '/sys', $live->get_system_root . '/sys'); #- copy resolv.conf for name resolution to work when adding media - mkdir_p($live->get_system_root . '/etc'); cp_f("/etc/resolv.conf", $live->get_system_root . "/etc/"); #- remove previous draklive leftovers if needed |