uml: clean up the kernel config and add squashfs+ext4/f2fs support
[openwrt/openwrt.git] / target / linux / uml / image / Makefile
1 #
2 # Copyright (C) 2006-2010 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 define Image/Prepare
11 cp $(LINUX_DIR)/linux $(KDIR)/vmlinux.elf
12 endef
13
14 define Image/Build/squashfs
15 dd if=/dev/zero of=$(KDIR)/root.squashfs bs=1024k count=0 seek=$(CONFIG_TARGET_ROOTFS_PARTSIZE)
16 endef
17
18 define Image/Build
19 $(call Image/Build/$(1))
20 cp $(KDIR)/root.$(1) $(BIN_DIR)/$(IMG_PREFIX)-$(1).img
21 cp $(KDIR)/vmlinux.elf $(BIN_DIR)/$(IMG_PREFIX)-vmlinux
22 endef
23
24 $(eval $(call BuildImage))