Makefile 1.1 KB

123456789101112131415161718192021222324252627282930313233
  1. # SPDX-License-Identifier: GPL-2.0-only
  2. #
  3. # Copyright (C) 2006-2010 OpenWrt.org
  4. include $(TOPDIR)/rules.mk
  5. include $(INCLUDE_DIR)/image.mk
  6. define Image/Prepare
  7. cp $(LINUX_DIR)/linux $(KDIR)/vmlinux.elf
  8. endef
  9. define Image/Build/squashfs
  10. dd if=/dev/zero of=$(KDIR)/root.squashfs bs=1024k count=0 seek=$(CONFIG_TARGET_ROOTFS_PARTSIZE)
  11. endef
  12. define Image/Build
  13. $(call Image/Build/$(1))
  14. cp $(KDIR)/root.$(1) $(BIN_DIR)/$(IMG_PREFIX)-$(1).img
  15. cp $(KDIR)/vmlinux.elf $(BIN_DIR)/$(IMG_PREFIX)-vmlinux
  16. endef
  17. $(eval $(call BuildImage))
  18. # UML requires linking against several glibc static libraries: libutil, librt
  19. # and libpthread, check that here. We do not check against libpthread
  20. # specifically because getting something to build that references a libpthread
  21. # symbol is pretty involved and Linux distributions package these 3 libraries
  22. # in the same package.
  23. $(eval $(call TestHostCommand,glibc-static, \
  24. Please install a static glibc package. (Missing libutil.a, librt.a or libpthread.a), \
  25. echo 'int main(int argc, char **argv) { login(0); timer_gettime(0, 0); return 0; }' | \
  26. gcc -include utmp.h -include time.h -x c -o $(TMP_DIR)/a.out - -static -lutil -lrt))