diff options
author | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2012-09-22 20:10:38 +0000 |
---|---|---|
committer | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2012-09-22 20:10:38 +0000 |
commit | c6b9735d685d4cf56cc3c7fa8351a7ad3073b06d (patch) | |
tree | 901e54c2f7dc7c3729f1e9dc9e6475f4c5aafe06 /package/grub2/Makefile | |
parent | e3c123c82b91ecb98112d99ab657c0516348db2d (diff) |
add a package for grub2
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@33512 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/grub2/Makefile')
-rw-r--r-- | package/grub2/Makefile | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/package/grub2/Makefile b/package/grub2/Makefile new file mode 100644 index 000000000..889f08579 --- /dev/null +++ b/package/grub2/Makefile @@ -0,0 +1,49 @@ +# +# Copyright (C) 2006-2010 OpenWrt.org +# +# This is free software, licensed under the GNU General Public License v2. +# See /LICENSE for more information. +# + +include $(TOPDIR)/rules.mk +include $(INCLUDE_DIR)/kernel.mk + +PKG_NAME:=grub +PKG_VERSION:=2.00 +PKG_RELEASE:=1 + +PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz +PKG_SOURCE_URL:=@GNU/grub +PKG_MD5SUM:=e927540b6eda8b024fb0391eeaa4091c + +PKG_HOST_ONLY:=1 +HOST_BUILD_PARALLEL:=1 +PKG_BUILD_DEPENDS:=grub2/host + +include $(INCLUDE_DIR)/host-build.mk +include $(INCLUDE_DIR)/package.mk + +define Package/grub2 + SUBMENU:=Boot Loaders + CATEGORY:=Utilities + SECTION:=utils + TITLE:=GRand Unified Bootloader + URL:=http://www.gnu.org/software/grub/ + DEPENDS:=@TARGET_x86 +endef + +HOST_CONFIGURE_ARGS += \ + --target=$(REAL_GNU_TARGET_NAME) \ + --sbindir="$(STAGING_DIR_HOST)/bin" \ + --disable-werror + +HOST_MAKE_FLAGS += \ + TARGET_RANLIB=$(TARGET_RANLIB) + +define Host/Configure + $(SED) 's,(RANLIB),(TARGET_RANLIB),' $(HOST_BUILD_DIR)/grub-core/Makefile.in + $(Host/Configure/Default) +endef + +$(eval $(call HostBuild)) +$(eval $(call BuildPackage,grub2)) |