diff --git a/.defconfig b/.defconfig deleted file mode 100644 index 7ab0c3fb..00000000 --- a/.defconfig +++ /dev/null @@ -1,51 +0,0 @@ -# -# Automatically generated make config: don't edit -# Mon Feb 18 09:11:56 2008 -# -BR2_HAVE_DOT_CONFIG=y -# BR2_alpha is not set -# BR2_arm is not set -# BR2_armeb is not set -# BR2_cris is not set -# BR2_ia64 is not set -BR2_i386=y -# BR2_m68k is not set -# BR2_mips is not set -# BR2_mipsel is not set -# BR2_nios2 is not set -# BR2_powerpc is not set -# BR2_sh is not set -# BR2_sparc is not set -# BR2_sparc64 is not set -# BR2_x86_64 is not set -# BR2_x86_i486 is not set -# BR2_x86_i586 is not set -BR2_x86_i686=y -# BR2_x86_pentiumpro is not set -# BR2_x86_pentium_mmx is not set -# BR2_x86_pentium_m is not set -# BR2_x86_pentium2 is not set -# BR2_x86_pentium3 is not set -# BR2_x86_pentium4 is not set -# BR2_x86_prescott is not set -# BR2_x86_nocona is not set -# BR2_x86_core2 is not set -# BR2_x86_k6 is not set -# BR2_x86_k6_2 is not set -# BR2_x86_athlon is not set -# BR2_x86_athlon_4 is not set -# BR2_x86_opteron is not set -# BR2_x86_opteron_sse3 is not set -# BR2_x86_barcelona is not set -# BR2_x86_geode is not set -# BR2_x86_c3 is not set -# BR2_x86_winchip_c6 is not set -# BR2_x86_winchip2 is not set -BR2_ARCH="i686" -BR2_ENDIAN="LITTLE" -BR2_GCC_TARGET_TUNE="i686" -BR2_GCC_TARGET_ARCH="i686" - -# -# Target options -# diff --git a/configs/miyoo_musl_defconfig b/configs/miyoo_musl_defconfig index 49c9d73f..2ad9eacf 100644 --- a/configs/miyoo_musl_defconfig +++ b/configs/miyoo_musl_defconfig @@ -139,6 +139,7 @@ BR2_PACKAGE_GMENU2X=y BR2_PACKAGE_MIYOO_DAEMON=y BR2_PACKAGE_MIYOO_LOGO=y BR2_PACKAGE_MIYOO_CTL=y +BR2_PACKAGE_FBCAT=y BR2_PACKAGE_DIALOG=y BR2_PACKAGE_UTIL_LINUX_LIBMOUNT=y BR2_PACKAGE_NANO=y diff --git a/configs/miyoo_uclibc_defconfig b/configs/miyoo_uclibc_defconfig index cc456ccb..4b10c396 100644 --- a/configs/miyoo_uclibc_defconfig +++ b/configs/miyoo_uclibc_defconfig @@ -116,6 +116,7 @@ BR2_PACKAGE_GMENU2X=y BR2_PACKAGE_MIYOO_DAEMON=y BR2_PACKAGE_MIYOO_LOGO=y BR2_PACKAGE_MIYOO_CTL=y +BR2_PACKAGE_FBCAT=y BR2_PACKAGE_DIALOG=y BR2_PACKAGE_UTIL_LINUX_LIBMOUNT=y BR2_PACKAGE_NANO=y diff --git a/package/Config.in b/package/Config.in index b284dc55..4fd80565 100644 --- a/package/Config.in +++ b/package/Config.in @@ -2135,6 +2135,7 @@ menu "Miscellaneous" source "package/miyoo-daemon/Config.in" source "package/miyoo-logo/Config.in" source "package/miyoo-ctl/Config.in" + source "package/fbcat/Config.in" endmenu diff --git a/package/fbcat/Config.in b/package/fbcat/Config.in new file mode 100644 index 00000000..13c6fca8 --- /dev/null +++ b/package/fbcat/Config.in @@ -0,0 +1,4 @@ +config BR2_PACKAGE_FBCAT + bool "fbcat" + help + fbcat diff --git a/package/fbcat/fbcat.hash b/package/fbcat/fbcat.hash new file mode 100644 index 00000000..40c3e91b --- /dev/null +++ b/package/fbcat/fbcat.hash @@ -0,0 +1,2 @@ +# Locally calculated +sha256 2c3f13981fa52aae462688fd6eb557773e960603d7ded5b0ba524f838f63606c fbcat-0.5.2.tar.gz diff --git a/package/fbcat/fbcat.mk b/package/fbcat/fbcat.mk new file mode 100644 index 00000000..9db05d79 --- /dev/null +++ b/package/fbcat/fbcat.mk @@ -0,0 +1,18 @@ +################################################################################ +# +# fbcat +# +################################################################################ + +FBCAT_VERSION = 0.5.2 +FBCAT_SITE = $(call github,jwilk,fbcat,$(FBCAT_VERSION)) + +define FBCAT_BUILD_CMDS + $(TARGET_CONFIGURE_OPTS) $(MAKE) -C $(@D) fbcat +endef + +define FBCAT_INSTALL_TARGET_CMDS + $(INSTALL) -D -m 0755 $(@D)/fbcat $(TARGET_DIR)/usr/bin/fbcat +endef + +$(eval $(generic-package))