Blame view

buildroot/buildroot-2016.08.1/package/fbset/fbset.mk 637 Bytes
6b13f685e   김민수   BSP 최초 추가
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
  ################################################################################
  #
  # fbset
  #
  ################################################################################
  
  FBSET_VERSION = 2.1
  FBSET_SITE = http://users.telenet.be/geertu/Linux/fbdev
  FBSET_DEPENDENCIES = host-bison host-flex
  FBSET_LICENSE = GPLv2
  
  # Make sure full fbset wins over busybox fbset
  ifeq ($(BR2_PACKAGE_BUSYBOX),y)
  FBSET_DEPENDENCIES += busybox
  endif
  
  define FBSET_BUILD_CMDS
  	$(MAKE1) $(TARGET_CONFIGURE_OPTS) -C $(@D)
  endef
  
  define FBSET_INSTALL_TARGET_CMDS
  	$(INSTALL) -D -m 755 $(@D)/fbset $(TARGET_DIR)/usr/sbin/fbset
  endef
  
  $(eval $(generic-package))