X-Git-Url: http://git.ipfire.org/?a=blobdiff_plain;f=lfs%2Fsyslinux;h=9d95cd5a165f49c0957f1397926f6dec7ad345fe;hb=7c80f8c5cc517e4c39824f038cd3867518e4f262;hp=bf682289bdedf72a2d4578730182df596738f8f1;hpb=20c5535cf791d06c2ef2a0b49e6073fab182e810;p=people%2Fpmueller%2Fipfire-2.x.git diff --git a/lfs/syslinux b/lfs/syslinux index bf682289bd..9d95cd5a16 100644 --- a/lfs/syslinux +++ b/lfs/syslinux @@ -1,7 +1,7 @@ ############################################################################### # # # IPFire.org - A linux based firewall # -# Copyright (C) 2007 Michael Tremer & Christian Schmidt # +# Copyright (C) 2007-2013 IPFire Team # # # # This program is free software: you can redistribute it and/or modify # # it under the terms of the GNU General Public License as published by # @@ -24,13 +24,17 @@ include Config -VER = 4.02 +VER = 6.04-pre1 THISAPP = syslinux-$(VER) -DL_FILE = $(THISAPP).tar.bz2 +DL_FILE = $(THISAPP).tar.xz DL_FROM = $(URL_IPFIRE) DIR_APP = $(DIR_SRC)/$(THISAPP) TARGET = $(DIR_INFO)/$(THISAPP) +SUP_ARCH = x86_64 i586 + +# Clear compiler flags (mainly hardening) +CFLAGS = ############################################################################### # Top-level Rules @@ -40,7 +44,7 @@ objects = $(DL_FILE) $(DL_FILE) = $(DL_FROM)/$(DL_FILE) -$(DL_FILE)_MD5 = 52912c03f5c275d6c0ac09180ebab81f +$(DL_FILE)_MD5 = f9c956fde0de29be297402ecbc8ff4d0 install : $(TARGET) @@ -69,7 +73,19 @@ $(subst %,%_MD5,$(objects)) : $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects)) @$(PREBUILD) - @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar jxf $(DIR_DL)/$(DL_FILE) - cd $(DIR_APP) && make install + @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar axf $(DIR_DL)/$(DL_FILE) + + # Build + cd $(DIR_APP) && make bios $(MAKETUNING) +ifeq "$(BUILD_ARCH)" "x86_64" + cd $(DIR_APP) && make efi64 $(MAKETUNING) +endif + + # Install + cd $(DIR_APP) && make bios install +ifeq "$(BUILD_ARCH)" "x86_64" + cd $(DIR_APP) && make efi64 install +endif + @rm -rf $(DIR_APP) @$(POSTBUILD)