diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2004-11-16 09:27:18 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2004-11-16 09:27:18 +0000 |
commit | 755e390a3e193a7c899db5a9e773cf403db31f50 (patch) | |
tree | a09451bf815883687aababfab0ba5a9213524711 /rescue/Makefile | |
parent | 12632bab895e9cd68493f120f44dbbfa6e3ab29f (diff) | |
download | drakx-755e390a3e193a7c899db5a9e773cf403db31f50.tar drakx-755e390a3e193a7c899db5a9e773cf403db31f50.tar.gz drakx-755e390a3e193a7c899db5a9e773cf403db31f50.tar.bz2 drakx-755e390a3e193a7c899db5a9e773cf403db31f50.tar.xz drakx-755e390a3e193a7c899db5a9e773cf403db31f50.zip |
major switch from ramdisk to clp
- mdkinst_stage2.bz2 is now mdkinst.clp
- rescue_stage2.bz2 is now rescue.clp
- make_mdkinst_stage2 is now mdkinst_stage2_tool
(we don't keep the live when building the clp, mdkinst_stage2_tool is able to create the clp from the live, or the live from the clp)
- all stage1 images now need cryptoloop & gzloop
- the clp can be preloaded in memory or not (see MEM_LIMIT_DRAKX_PRELOAD and MEM_LIMIT_RESCUE_PRELOAD)
(for http & ftp, it *must* be preloaded)
- we don't uncompress the ramdisk anymore since the decompression is done on the fly, this makes the rescue boot much faster
- function get_ramdisk_realname() is replaced with macro CLP_FILE_REL
Diffstat (limited to 'rescue/Makefile')
-rw-r--r-- | rescue/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/rescue/Makefile b/rescue/Makefile index b43275b94..591676a70 100644 --- a/rescue/Makefile +++ b/rescue/Makefile @@ -1,12 +1,12 @@ include ../Makefile.config -all: rescue_stage2.bz2 +all: rescue.clp -install: rescue_stage2.bz2 +install: rescue.clp cp -f $< $(STAGE2_DEST) -rescue_stage2.bz2: kernel_read_part list list.$(ARCH) drvinst guessmounts lsparts rescue-doc make_rescue_img +rescue.clp: kernel_read_part list list.$(ARCH) drvinst guessmounts lsparts rescue-doc make_rescue_img ./make_rescue_img clean: - rm -f rescue_stage2.bz2 kernel_read_part + rm -f rescue.clp kernel_read_part |