aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/cobalt
Commit message (Expand)AuthorAgeFilesLines
* kernel: update kernel to 2.6.39.2Hauke Mehrtens2011-06-281-1/+1
* remove 2.6.35 and 2.6.32 supportFlorian Fainelli2011-06-192-736/+0
* switch to 2.6.39Florian Fainelli2011-06-143-74/+401
* fix diag.sh with qube2 front ledFlorian Fainelli2011-06-141-6/+8
* resync kernel configFlorian Fainelli2011-06-141-17/+5
* fill maintainer infos for a couple of targetsFlorian Fainelli2011-05-061-0/+1
* global cflags: remove -funit-at-a-time, it is ignored by recent compilers. in...Felix Fietkau2011-03-261-1/+1
* update to 2.6.32.33 and 2.6.37.4Imre Kaloz2011-03-181-2/+2
* kernel: update to kernel version 2.6.32.32Hauke Mehrtens2011-03-131-1/+1
* update to 2.6.32.29Florian Fainelli2011-02-191-1/+1
* kernel: update kernel versions Update kernel 2.6.32.26 to 2.6.32.27 Update ke...Hauke Mehrtens2010-12-111-1/+1
* update to the latest stable kernelsImre Kaloz2010-11-241-1/+1
* switch from ext2 to ext4 (w/o) journalingImre Kaloz2010-11-221-2/+2
* update kernels to 2.6.32.25 and 2.6.35.8Imre Kaloz2010-11-041-1/+1
* upgrade kernel versions to the latest stable onesImre Kaloz2010-10-041-1/+1
* add support for 2.6.35Florian Fainelli2010-08-252-99/+474
* rename config-2.6.32 to config-defaultFlorian Fainelli2010-08-251-0/+0
* update to 2.6.32.20Florian Fainelli2010-08-221-1/+1
* update kernel versionsImre Kaloz2010-07-191-1/+1
* generic: don't override CONFIG_DEBUG_FSGabor Juhos2010-06-101-1/+0
* update linux kernel to 2.6.32.14Nicolas Thill2010-05-271-1/+1
* kernel: update kernel to version 2.6.32.13 and 2.6.33.4Hauke Mehrtens2010-05-231-1/+1
* buildsystem: rename tgz/TGZ "feature" and matching options to targz/TARGZNicolas Thill2010-04-281-1/+1
* sync to kernel 2.6.32.12Alexandros C. Couloumbis2010-04-271-1/+1
* target: remove CONFIG_CRC16 override (closes: #7194)Nicolas Thill2010-04-241-1/+0
* define a shared IMG_PREFIX variable used as a basename for image files, it co...Nicolas Thill2010-04-121-3/+3
* kernel: update to 2.6.32.10Gabor Juhos2010-03-262-17/+14
* drop support for 2.6.30Florian Fainelli2010-03-262-605/+0
* do *not* enable CONFIG_PCI in generic config, but on targets where it makes s...Nicolas Thill2010-03-112-0/+2
* kernel: update to kernel 2.6.32.9Hauke Mehrtens2010-02-281-1/+1
* add missing kernel configuration and patches for 2.6.32Florian Fainelli2010-02-212-0/+608
* update kernel from 2.6.32.7 to 2.6.32.8, thanks tripolarTravis Kemen2010-02-121-1/+1
* clean up handling of some kernel symbolsImre Kaloz2010-02-111-1/+0
* switch to 2.6.32Florian Fainelli2010-02-101-1/+1
* move 2.6.30 config and patches to their appropriate locationFlorian Fainelli2010-02-042-0/+0
* refresh no_module_reloc.patch for mips64 targetsFlorian Fainelli2010-01-291-44/+84
* update to 2.6.30, refresh patchesFlorian Fainelli2009-12-042-18/+15
* kernel: move CONFIG_MIPS_FPU_EMU to generic kernel configFelix Fietkau2009-11-291-1/+0
* revert the 027-mips_module_reloc.patch patch for mips64 targets until we fix ...Florian Fainelli2009-11-291-0/+335
* some more Kconfig symbol move..Imre Kaloz2009-11-111-1/+0
* another round of kernel config cleanupsImre Kaloz2009-11-111-5/+0
* sort all target config filesImre Kaloz2009-11-111-18/+18
* update to 2.6.30.9Florian Fainelli2009-10-231-1/+1
* optimize binaries for the rm5200 cpu present on cobalt, do not use the mips32...Florian Fainelli2009-10-071-0/+1
* cleanup kernel configurationFlorian Fainelli2009-10-071-55/+0
* move common CONFIG_FB entries to genericNicolas Thill2009-10-051-45/+0
* resync kernel configuration, enable netfilter and wireless extensionsFlorian Fainelli2009-10-051-66/+15
* move IMAGE_CMDLINE_HACK default to generic from targetsAndy Boyett2009-10-051-1/+0
* kernel: upgrade to 2.6.30.8 and refresh patchesGabor Juhos2009-10-011-1/+1
* update to latest 2.6.27 and 2.6.30 kernelsImre Kaloz2009-09-171-1/+1
i">+#undef __fs + #if defined(_LARGEFILE64_SOURCE) || defined(_GNU_SOURCE) #define tmpfile64 tmpfile #define fopen64 fopen --- a/include/syslog.h +++ b/include/syslog.h @@ -56,16 +56,22 @@ extern "C" { #define LOG_NOWAIT 0x10 #define LOG_PERROR 0x20 +#if __GNUC__ >= 3 +#define __fp(x, y) __attribute__ ((__format__ (__printf__, x, y))) +#else +#define __fp(x, y) +#endif + void closelog (void); void openlog (const char *, int, int); int setlogmask (int); -void syslog (int, const char *, ...); +void syslog (int, const char *, ...) __fp(2, 3); #if defined(_GNU_SOURCE) || defined(_BSD_SOURCE) #define _PATH_LOG "/dev/log" #define __NEED_va_list #include <bits/alltypes.h> -void vsyslog (int, const char *, va_list); +void vsyslog (int, const char *, va_list) __fp(2, 0); #if defined(SYSLOG_NAMES) #define INTERNAL_NOPRI 0x10 #define INTERNAL_MARK (LOG_NFACILITIES<<3) @@ -93,6 +99,8 @@ typedef struct { #endif #endif +#undef __fp + #ifdef __cplusplus } #endif