From 287245dab721c6049a946dffb32152fc2839c015 Mon Sep 17 00:00:00 2001 From: Guillaume Cottenceau Date: Wed, 22 Oct 2003 19:17:52 +0000 Subject: handle "boot" clp and "main" clp. passing argument "live" can force to not use the clp in favor of live tree. --- mdk-stage1/stage1.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'mdk-stage1/stage1.h') diff --git a/mdk-stage1/stage1.h b/mdk-stage1/stage1.h index 94f99e7c7..0b47b7b93 100644 --- a/mdk-stage1/stage1.h +++ b/mdk-stage1/stage1.h @@ -36,6 +36,7 @@ extern char * stage2_kickstart; #define MODE_EXPERT (1 << 1) #define MODE_RESCUE (1 << 3) #define MODE_AUTOMATIC (1 << 4) +#define MODE_LIVE (1 << 5) #define MODE_SPECIAL_STAGE2 (1 << 8) #define MODE_RAMDISK (1 << 9) #define MODE_CHANGEDISK (1 << 10) @@ -48,6 +49,7 @@ extern char * stage2_kickstart; #define IS_EXPERT (get_param(MODE_EXPERT)) #define IS_RESCUE (get_param(MODE_RESCUE)) #define IS_AUTOMATIC (get_param(MODE_AUTOMATIC)) +#define IS_LIVE (get_param(MODE_LIVE)) #define IS_SPECIAL_STAGE2 (get_param(MODE_SPECIAL_STAGE2)) #define IS_RAMDISK (get_param(MODE_RAMDISK)) #define IS_CHANGEDISK (get_param(MODE_CHANGEDISK)) -- cgit v1.2.1