finally move buildroot-ng to trunk
[openwrt.git] / target / image / x86 / Makefile
1
2 # Copyright (C) 2006 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7 include $(TOPDIR)/rules.mk
8 include $(INCLUDE_DIR)/image.mk
9
10 ifeq ($(CONFIG_X86_GRUB_IMAGES),y)
11   define Build/Compile
12         $(MAKE) -C grub compile
13   endef
14
15   define Build/Clean
16         $(MAKE) -C grub clean
17   endef
18
19   define Image/cmdline/jffs2-64k
20     block2mtd.block2mtd=/dev/hda2,65536 root=/dev/mtdblock0 rootfstype=jffs2
21   endef
22
23   define Image/cmdline/jffs2-128k
24     block2mtd.block2mtd=/dev/hda2,131072 root=/dev/mtdblock0 rootfstype=jffs2
25   endef
26
27   define Image/cmdline/ext2
28     root=/dev/hda2 rootfstype=ext2
29   endef
30
31   define Image/Build/grub
32         mkdir -p $(KDIR)/root.grub/boot/grub
33         $(CP) \
34                 $(STAGING_DIR)/usr/lib/grub/i386-pc/stage1 \
35                 $(STAGING_DIR)/usr/lib/grub/i386-pc/stage2 \
36                 $(STAGING_DIR)/usr/lib/grub/i386-pc/e2fs_stage1_5 \
37                 $(KDIR)/root.grub/boot/grub/
38         $(CP) $(LINUX_DIR)/arch/i386/boot/bzImage $(KDIR)/root.grub/boot/vmlinuz
39         sed \
40                 -e 's#@CMDLINE@#$(strip $(call Image/cmdline/$(1)))#g' \
41                 -e 's#@BAUDRATE@#$(CONFIG_X86_GRUB_BAUDRATE)#g' \
42                 ./grub/menu.lst > $(KDIR)/root.grub/boot/grub/menu.lst
43         PATH="$(STAGING_DIR)/usr/sbin:$(STAGING_DIR)/bin:$(PATH)" ./gen_image.sh $(BIN_DIR)/openwrt-$(BOARD)-$(KERNEL)-$(1).image $(CONFIG_X86_GRUB_KERNELPART) $(KDIR)/root.grub $(CONFIG_X86_GRUB_FSPART) $(KDIR)/root.$(1)
44   endef
45 endif
46
47 define Image/Build
48         $(call Image/Build/grub,$(1))
49         cp $(KDIR)/root.$(1) $(BIN_DIR)/openwrt-$(BOARD)-$(KERNEL)-$(1).fs
50         cp $(LINUX_DIR)/arch/i386/boot/bzImage $(BIN_DIR)/openwrt-$(BOARD)-$(KERNEL)-vmlinuz
51 endef
52
53
54 $(eval $(call BuildImage))