diff options
author | Thierry Vignaud <tv@mageia.org> | 2012-06-01 17:25:03 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mageia.org> | 2012-06-01 17:25:03 +0000 |
commit | 7d3e2e64804dd41b6a4c3383a30c255c79e3639c (patch) | |
tree | a7c3fa7eb11846701e170eb240616586e6f948dc | |
parent | 5d355965685acfd6190aecbc3d56997c5428b6ff (diff) | |
download | drakx-backup-do-not-use-7d3e2e64804dd41b6a4c3383a30c255c79e3639c.tar drakx-backup-do-not-use-7d3e2e64804dd41b6a4c3383a30c255c79e3639c.tar.gz drakx-backup-do-not-use-7d3e2e64804dd41b6a4c3383a30c255c79e3639c.tar.bz2 drakx-backup-do-not-use-7d3e2e64804dd41b6a4c3383a30c255c79e3639c.tar.xz drakx-backup-do-not-use-7d3e2e64804dd41b6a4c3383a30c255c79e3639c.zip |
enable to do a debug build in the BS
introduce USE_LOCAL_STAGE1 in order to use a locally build stage1
-rw-r--r-- | images/NEWS | 2 | ||||
-rwxr-xr-x | images/make_boot_img | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/images/NEWS b/images/NEWS index bbed45d11..73ac13bda 100644 --- a/images/NEWS +++ b/images/NEWS @@ -1,3 +1,5 @@ +- enable to do a debug build in the BS + Version 1.75 - 17 May 2012 by Thomas Backlund - add modules.order and modules.builtin in initrd diff --git a/images/make_boot_img b/images/make_boot_img index a31a01b6f..33096a429 100755 --- a/images/make_boot_img +++ b/images/make_boot_img @@ -145,7 +145,7 @@ EOF sub initrd { my ($type, $I, $img) = @_; - my $stage1_root = $ENV{DEBUGSTAGE1} ? "../mdk-stage1" : "/usr/$lib/drakx-installer-binaries"; + my $stage1_root = $ENV{USE_LOCAL_STAGE1} ? "../mdk-stage1" : "/usr/$lib/drakx-installer-binaries"; my ($ext) = $img =~ /rdz-(.*)/ or die "bad initrd name ($img)"; _ "rm -rf $tmp_initrd"; |