From: <abe...@us...> - 2014-08-18 02:59:45
|
Revision: 6636 http://sourceforge.net/p/astlinux/code/6636 Author: abelbeck Date: 2014-08-18 02:59:35 +0000 (Mon, 18 Aug 2014) Log Message: ----------- new packages, flashrom and dmidecode, not enabled, user beware Modified Paths: -------------- branches/1.0/astlinux-ast11.config branches/1.0/astlinux18.config branches/1.0/initrd.config branches/1.0/package/Config.in branches/1.0/runnix-uclibc.config branches/1.0/runnix.config Added Paths: ----------- branches/1.0/package/dmidecode/ branches/1.0/package/dmidecode/Config.in branches/1.0/package/dmidecode/dmidecode-build-system-fixes.patch branches/1.0/package/dmidecode/dmidecode.mk branches/1.0/package/flashrom/ branches/1.0/package/flashrom/Config.in branches/1.0/package/flashrom/flashrom.mk Modified: branches/1.0/astlinux-ast11.config =================================================================== --- branches/1.0/astlinux-ast11.config 2014-08-17 18:51:59 UTC (rev 6635) +++ branches/1.0/astlinux-ast11.config 2014-08-18 02:59:35 UTC (rev 6636) @@ -1,7 +1,7 @@ # # Automatically generated make config: don't edit -# Buildroot 2011.08-svn6627-dirty Configuration -# Fri Aug 15 06:27:55 2014 +# Buildroot 2011.08-svn6635-dirty Configuration +# Sun Aug 17 21:48:38 2014 # BR2_HAVE_DOT_CONFIG=y # BR2_arm is not set @@ -343,6 +343,7 @@ # BR2_PACKAGE_CDRKIT is not set # BR2_PACKAGE_CRAMFS is not set # BR2_PACKAGE_DBUS is not set +# BR2_PACKAGE_DMIDECODE is not set # BR2_PACKAGE_DMRAID is not set BR2_PACKAGE_DOSFSTOOLS=y BR2_PACKAGE_DOSFSTOOLS_MKDOSFS=y @@ -369,6 +370,7 @@ # BR2_PACKAGE_EEPROG is not set # BR2_PACKAGE_FCONFIG is not set # BR2_PACKAGE_FIS is not set +# BR2_PACKAGE_FLASHROM is not set BR2_PACKAGE_FXLOAD=y # BR2_PACKAGE_GADGETFS_TEST is not set # BR2_PACKAGE_GDISK is not set Modified: branches/1.0/astlinux18.config =================================================================== --- branches/1.0/astlinux18.config 2014-08-17 18:51:59 UTC (rev 6635) +++ branches/1.0/astlinux18.config 2014-08-18 02:59:35 UTC (rev 6636) @@ -1,7 +1,7 @@ # # Automatically generated make config: don't edit -# Buildroot 2011.08-svn6627-dirty Configuration -# Fri Aug 15 06:27:54 2014 +# Buildroot 2011.08-svn6635-dirty Configuration +# Sun Aug 17 21:48:34 2014 # BR2_HAVE_DOT_CONFIG=y # BR2_arm is not set @@ -343,6 +343,7 @@ # BR2_PACKAGE_CDRKIT is not set # BR2_PACKAGE_CRAMFS is not set # BR2_PACKAGE_DBUS is not set +# BR2_PACKAGE_DMIDECODE is not set # BR2_PACKAGE_DMRAID is not set BR2_PACKAGE_DOSFSTOOLS=y BR2_PACKAGE_DOSFSTOOLS_MKDOSFS=y @@ -369,6 +370,7 @@ # BR2_PACKAGE_EEPROG is not set # BR2_PACKAGE_FCONFIG is not set # BR2_PACKAGE_FIS is not set +# BR2_PACKAGE_FLASHROM is not set BR2_PACKAGE_FXLOAD=y # BR2_PACKAGE_GADGETFS_TEST is not set # BR2_PACKAGE_GDISK is not set Modified: branches/1.0/initrd.config =================================================================== --- branches/1.0/initrd.config 2014-08-17 18:51:59 UTC (rev 6635) +++ branches/1.0/initrd.config 2014-08-18 02:59:35 UTC (rev 6636) @@ -1,7 +1,7 @@ # # Automatically generated make config: don't edit -# Buildroot 2011.08-svn6627-dirty Configuration -# Fri Aug 15 06:27:56 2014 +# Buildroot 2011.08-svn6635-dirty Configuration +# Sun Aug 17 21:49:01 2014 # BR2_HAVE_DOT_CONFIG=y # BR2_arm is not set @@ -314,6 +314,7 @@ # BR2_PACKAGE_CDRKIT is not set # BR2_PACKAGE_CRAMFS is not set # BR2_PACKAGE_DBUS is not set +# BR2_PACKAGE_DMIDECODE is not set # BR2_PACKAGE_DMRAID is not set # BR2_PACKAGE_DOSFSTOOLS is not set BR2_PACKAGE_E2FSPROGS=y @@ -337,6 +338,7 @@ # BR2_PACKAGE_EEPROG is not set # BR2_PACKAGE_FCONFIG is not set # BR2_PACKAGE_FIS is not set +# BR2_PACKAGE_FLASHROM is not set # BR2_PACKAGE_FXLOAD is not set # BR2_PACKAGE_GADGETFS_TEST is not set # BR2_PACKAGE_GDISK is not set Modified: branches/1.0/package/Config.in =================================================================== --- branches/1.0/package/Config.in 2014-08-17 18:51:59 UTC (rev 6635) +++ branches/1.0/package/Config.in 2014-08-18 02:59:35 UTC (rev 6636) @@ -183,12 +183,14 @@ if BR2_PACKAGE_BUSYBOX_SHOW_OTHERS source "package/devmem2/Config.in" endif +source "package/dmidecode/Config.in" source "package/dmraid/Config.in" source "package/dosfstools/Config.in" source "package/e2fsprogs/Config.in" source "package/eeprog/Config.in" source "package/fconfig/Config.in" source "package/fis/Config.in" +source "package/flashrom/Config.in" source "package/fxload/Config.in" source "package/gadgetfs-test/Config.in" source "package/gdisk/Config.in" Added: branches/1.0/package/dmidecode/Config.in =================================================================== --- branches/1.0/package/dmidecode/Config.in (rev 0) +++ branches/1.0/package/dmidecode/Config.in 2014-08-18 02:59:35 UTC (rev 6636) @@ -0,0 +1,10 @@ +config BR2_PACKAGE_DMIDECODE + bool "dmidecode" + depends on BR2_i386 || BR2_x86_64 + help + Dmidecode reports information about your system's hardware + as described in your system BIOS according to the SMBIOS/DMI + standard. + + http://www.nongnu.org/dmidecode/ + Added: branches/1.0/package/dmidecode/dmidecode-build-system-fixes.patch =================================================================== --- branches/1.0/package/dmidecode/dmidecode-build-system-fixes.patch (rev 0) +++ branches/1.0/package/dmidecode/dmidecode-build-system-fixes.patch 2014-08-18 02:59:35 UTC (rev 6636) @@ -0,0 +1,35 @@ +Minor build system fixes + +Usual build system fixes to allow CC/CFLAGS/LDFLAGS to be overriden +from the command line, and completed by additional flags from the +Makefile. + +Signed-off-by: Thomas Petazzoni <tho...@fr...> + +Index: b/Makefile +=================================================================== +--- a/Makefile ++++ b/Makefile +@@ -12,9 +12,10 @@ + # (at your option) any later version. + # + +-CC = gcc +-CFLAGS = -W -Wall -Wshadow -Wstrict-prototypes -Wpointer-arith -Wcast-qual \ +- -Wcast-align -Wwrite-strings -Wmissing-prototypes -Winline -Wundef ++CC ?= gcc ++override CFLAGS += \ ++ -W -Wall -Wshadow -Wstrict-prototypes -Wpointer-arith -Wcast-qual \ ++ -Wcast-align -Wwrite-strings -Wmissing-prototypes -Winline -Wundef + #CFLAGS += -DBIGENDIAN + #CFLAGS += -DALIGNMENT_WORKAROUND + +@@ -23,7 +24,7 @@ + #CFLAGS += -g + + # Pass linker flags here +-LDFLAGS = ++override LDFLAGS += + + DESTDIR = + prefix = /usr/local Added: branches/1.0/package/dmidecode/dmidecode.mk =================================================================== --- branches/1.0/package/dmidecode/dmidecode.mk (rev 0) +++ branches/1.0/package/dmidecode/dmidecode.mk 2014-08-18 02:59:35 UTC (rev 6636) @@ -0,0 +1,18 @@ +############################################################# +# +# dmidecode +# +############################################################# + +DMIDECODE_VERSION = 2.12 +DMIDECODE_SITE = http://download.savannah.gnu.org/releases/dmidecode + +define DMIDECODE_BUILD_CMDS + $(MAKE) -C $(@D) $(TARGET_CONFIGURE_OPTS) +endef + +define DMIDECODE_INSTALL_TARGET_CMDS + $(MAKE) -C $(@D) prefix=/usr DESTDIR=$(TARGET_DIR) install +endef + +$(eval $(call GENTARGETS,package,dmidecode)) Added: branches/1.0/package/flashrom/Config.in =================================================================== --- branches/1.0/package/flashrom/Config.in (rev 0) +++ branches/1.0/package/flashrom/Config.in 2014-08-18 02:59:35 UTC (rev 6636) @@ -0,0 +1,12 @@ +config BR2_PACKAGE_FLASHROM + bool "flashrom" + select BR2_PACKAGE_PCIUTILS + # dmidecode is only a runtime dependency + select BR2_PACKAGE_DMIDECODE + depends on BR2_i386 || BR2_x86_64 + help + BIOS-updating utility. + Requires PCIUtils libraries. + + http://flashrom.org/ + Added: branches/1.0/package/flashrom/flashrom.mk =================================================================== --- branches/1.0/package/flashrom/flashrom.mk (rev 0) +++ branches/1.0/package/flashrom/flashrom.mk 2014-08-18 02:59:35 UTC (rev 6636) @@ -0,0 +1,20 @@ +############################################################# +# +# flashrom +# +############################################################# +FLASHROM_VERSION = 0.9.7 +FLASHROM_SOURCE = flashrom-$(FLASHROM_VERSION).tar.bz2 +FLASHROM_SITE = http://download.flashrom.org/releases + +FLASHROM_DEPENDENCIES = pciutils + +define FLASHROM_BUILD_CMDS + $(MAKE) $(TARGET_CONFIGURE_OPTS) -C $(@D) +endef + +define FLASHROM_INSTALL_TARGET_CMDS + $(INSTALL) -m 0755 -D $(@D)/flashrom $(TARGET_DIR)/usr/sbin/flashrom +endef + +$(eval $(call GENTARGETS,package,flashrom)) Modified: branches/1.0/runnix-uclibc.config =================================================================== --- branches/1.0/runnix-uclibc.config 2014-08-17 18:51:59 UTC (rev 6635) +++ branches/1.0/runnix-uclibc.config 2014-08-18 02:59:35 UTC (rev 6636) @@ -1,7 +1,7 @@ # # Automatically generated make config: don't edit -# Buildroot 2011.08-svn6627-dirty Configuration -# Fri Aug 15 06:27:56 2014 +# Buildroot 2011.08-svn6635-dirty Configuration +# Sun Aug 17 21:48:54 2014 # BR2_HAVE_DOT_CONFIG=y # BR2_arm is not set @@ -488,6 +488,7 @@ # # BR2_PACKAGE_CRAMFS is not set # BR2_PACKAGE_DBUS is not set +# BR2_PACKAGE_DMIDECODE is not set # # dmraid requires a toolchain with LARGEFILE support @@ -503,6 +504,7 @@ # BR2_PACKAGE_EEPROG is not set # BR2_PACKAGE_FCONFIG is not set # BR2_PACKAGE_FIS is not set +# BR2_PACKAGE_FLASHROM is not set # BR2_PACKAGE_FXLOAD is not set # BR2_PACKAGE_GADGETFS_TEST is not set Modified: branches/1.0/runnix.config =================================================================== --- branches/1.0/runnix.config 2014-08-17 18:51:59 UTC (rev 6635) +++ branches/1.0/runnix.config 2014-08-18 02:59:35 UTC (rev 6636) @@ -1,7 +1,7 @@ # # Automatically generated make config: don't edit -# Buildroot 2011.08-svn6627-dirty Configuration -# Fri Aug 15 06:27:55 2014 +# Buildroot 2011.08-svn6635-dirty Configuration +# Sun Aug 17 21:48:46 2014 # BR2_HAVE_DOT_CONFIG=y # BR2_arm is not set @@ -334,6 +334,7 @@ # BR2_PACKAGE_CDRKIT is not set # BR2_PACKAGE_CRAMFS is not set # BR2_PACKAGE_DBUS is not set +# BR2_PACKAGE_DMIDECODE is not set # BR2_PACKAGE_DMRAID is not set BR2_PACKAGE_DOSFSTOOLS=y BR2_PACKAGE_DOSFSTOOLS_MKDOSFS=y @@ -360,6 +361,7 @@ # BR2_PACKAGE_EEPROG is not set # BR2_PACKAGE_FCONFIG is not set # BR2_PACKAGE_FIS is not set +# BR2_PACKAGE_FLASHROM is not set # BR2_PACKAGE_FXLOAD is not set # BR2_PACKAGE_GADGETFS_TEST is not set # BR2_PACKAGE_GDISK is not set This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |