]> git.ipfire.org Git - ipfire-2.x.git/blobdiff - lfs/whatmask
Kernel Update
[ipfire-2.x.git] / lfs / whatmask
similarity index 91%
rename from lfs/aboot
rename to lfs/whatmask
index 7dbc8ca3f3a0860863dbcdd9cde421fe29c667b2..991840bb7695328778b3fd32ac19af5f4b7e65b2 100644 (file)
--- a/lfs/aboot
 
 include Config
 
-VER        = 0.9b
+VER        = 1.2
 
-THISAPP    = aboot-$(VER)
+THISAPP    = whatmask-$(VER)
 DL_FILE    = $(THISAPP).tar.gz
 DL_FROM    = $(URL_IPFIRE)
 DIR_APP    = $(DIR_SRC)/$(THISAPP)
 TARGET     = $(DIR_INFO)/$(THISAPP)
-CFLAGS     =
-CXXFLAGS   =
 
 ###############################################################################
 # Top-level Rules
@@ -44,7 +42,7 @@ objects = $(DL_FILE)
 
 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
 
-$(DL_FILE)_MD5 = 00c35c192d320bb005ad9bead7043d2c
+$(DL_FILE)_MD5 = 26aeff74dbba70262ccd426e681dcf4a
 
 install : $(TARGET)
 
@@ -54,6 +52,9 @@ download :$(patsubst %,$(DIR_DL)/%,$(objects))
 
 md5 : $(subst %,%_MD5,$(objects))
 
+dist: 
+       @$(PAK)
+
 ###############################################################################
 # Downloading, checking, md5sum
 ###############################################################################
@@ -74,14 +75,8 @@ $(subst %,%_MD5,$(objects)) :
 $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        @$(PREBUILD)
        @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
-       cd $(DIR_APP) && make CFGDEFS="-fno-stack-protector"
+       cd $(DIR_APP) && ./configure --prefix=/usr
+       cd $(DIR_APP) && make $(MAKETUNING)
        cd $(DIR_APP) && make install
-
-       # aboot files
-       mkdir -p /boot/etc
-       for i in $(DIR_SRC)/config/aboot/*; do \
-           [ -f $$i ] && cp -f $$i /boot/etc; \
-       done
-
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)