diff options
author | Thierry Vignaud <tv@mageia.org> | 2012-03-08 11:53:20 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mageia.org> | 2012-03-08 11:53:20 +0000 |
commit | 4c50913dde628af51909e36a1bf094c97189e8ec (patch) | |
tree | be495e402075b38718eef543836551831fdbd012 | |
parent | 233cb4a083e4f316c3400bfb1a5349308917c708 (diff) | |
download | drakx-4c50913dde628af51909e36a1bf094c97189e8ec.tar drakx-4c50913dde628af51909e36a1bf094c97189e8ec.tar.gz drakx-4c50913dde628af51909e36a1bf094c97189e8ec.tar.bz2 drakx-4c50913dde628af51909e36a1bf094c97189e8ec.tar.xz drakx-4c50913dde628af51909e36a1bf094c97189e8ec.zip |
(dont_run_directly_stage2) start udev since we fork a shell prior to running stage2
-rw-r--r-- | perl-install/install/Makefile | 2 | ||||
-rw-r--r-- | perl-install/install/NEWS | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/perl-install/install/Makefile b/perl-install/install/Makefile index fbd4f5a3d..28899e806 100644 --- a/perl-install/install/Makefile +++ b/perl-install/install/Makefile @@ -104,7 +104,7 @@ stage2: dont_run_directly_stage2: [ -d $(DEST) ] || ../../tools/mdkinst_stage2_tool --uncompress $(STAGE2_DEST) - echo -e '#!/bin/sh\n\nexec /usr/bin/busybox sh' > $(DEST)/usr/bin/runinstall2.sh + echo -e '#!/bin/sh\n\nperl -I/usr/lib/libDrakX -Minstall::install2 -e "install::install2::start_udev()"\nexec /usr/bin/busybox sh' > $(DEST)/usr/bin/runinstall2.sh chmod a+x $(DEST)/usr/bin/runinstall2.sh ln -sf runinstall2.sh $(DEST)/usr/bin/runinstall2 diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS index 62aaffc7b..259bead6b 100644 --- a/perl-install/install/NEWS +++ b/perl-install/install/NEWS @@ -6,6 +6,7 @@ - debug build: o don't run directly stage2 o include busybox + o start udev since we fork a shell prior to running stage2 Version 13.90 - 06 March 2012 |