aboutsummaryrefslogtreecommitdiffstats
path: root/include/verbose.mk
Commit message (Expand)AuthorAgeFilesLines
* include/verbose.mk: Add sc to failure messageDaniel Engberg2018-07-301-1/+1
* verbose.mk: quote SUBMAKE options李国2018-07-121-1/+1
* build: tell users to do non-paralle builds on errorsFelix Fietkau2015-04-161-1/+1
* include: remove trailing whitespacesLuka Perkov2015-03-291-1/+1
* build: make the color of the 'configuration out of sync' warning red to make ...Felix Fietkau2013-03-171-0/+6
* build: fix bad file descriptor issues with the verbosity changesFelix Fietkau2012-04-261-1/+1
* build: rework verbosity level selectionFelix Fietkau2012-04-261-14/+17
* Allow colored output to be disabled when running a non-verbose build by setti...Lars-Peter Clausen2010-02-081-2/+4
* disable stdin unless make V=99; fixes bug where compilation can stall waiting...Mike Baker2010-02-041-1/+1
* make sure that processed directories are printed on make V=99Felix Fietkau2010-01-161-1/+1
* get rid of $Id$ - it has never helped us and it has broken too many patches ;)Felix Fietkau2009-04-171-1/+0
* use file descriptors 8 and 9 for build system internal log messages, as appar...Felix Fietkau2008-06-161-2/+2
* large improvement for parallel builds. works without V=99 now and without war...Felix Fietkau2008-06-091-5/+7
* add a flag "IGNORE_ERRORS", which can be used to ignore build errors in packagesFelix Fietkau2008-05-071-3/+7
* use printf instead of echoAndy Boyett2007-12-261-4/+4
* add shell compatibility patch from #2659Felix Fietkau2007-11-301-1/+1
* next round of build system cleanup - convert package/ to new structureFelix Fietkau2007-07-301-1/+1
* fix verbose output with dash as /bin/shFelix Fietkau2007-07-301-1/+1
* more build system cleanupFelix Fietkau2007-07-281-8/+12
* minor tweaks to the verbose systemMike Baker2007-04-111-1/+5
* fix colors when compiling with some newer versions of bashMike Baker2007-01-301-2/+2
* another optimizationFelix Fietkau2006-11-121-1/+1
* finally move buildroot-ng to trunkFelix Fietkau2016-03-201-0/+43
class="gu">@@ -1058,6 +1059,7 @@ static void DSL_DRV_DebugInit(void) /* Entry point of driver */ int __init DSL_ModuleInit(void) { + struct class *dsl_class; DSL_int_t i; printk(DSL_DRV_CRLF DSL_DRV_CRLF "Infineon CPE API Driver version: %s" DSL_DRV_CRLF, @@ -1104,7 +1106,8 @@ int __init DSL_ModuleInit(void) } DSL_DRV_DevNodeInit(); - + dsl_class = class_create(THIS_MODULE, "dsl_cpe_api"); + device_create(dsl_class, NULL, MKDEV(DRV_DSL_CPE_API_DEV_MAJOR, 0), NULL, "dsl_cpe_api"); return 0; } --- a/src/include/drv_dsl_cpe_os_linux.h +++ b/src/include/drv_dsl_cpe_os_linux.h @@ -17,17 +17,17 @@ #endif #include <asm/ioctl.h> -#include <linux/autoconf.h> +#include <generated/autoconf.h> #include <linux/module.h> #include <linux/kernel.h> #include <linux/init.h> #include <linux/ctype.h> #include <linux/version.h> #include <linux/spinlock.h> - +#include <linux/sched.h> #if (LINUX_VERSION_CODE > KERNEL_VERSION(2,6,17)) - #include <linux/utsrelease.h> + #include <generated/utsrelease.h> #endif #include <linux/types.h> --- a/src/mei/ifxmips_mei.c +++ b/src/mei/ifxmips_mei.c @@ -29,7 +29,7 @@ #include <linux/kernel.h> #include <linux/module.h> #include <linux/version.h> -#include <linux/utsrelease.h> +#include <generated/utsrelease.h> #include <linux/types.h> #include <linux/fs.h> #include <linux/mm.h>