Skip to content

Conversation

@TBNRBERRY
Copy link

Version 1
Config file for the Spotify Car Thing

TBNRBERRY added 8 commits May 11, 2025 13:43
Version 1
Config file for the Spotify Car Thing
Changed line 1235
From: strncpy(buf, tsk->comm, sizeof(tsk->comm));
To: strncpy(buf, tsk->comm, sizeof(buf));
Changed line 1235
From: 
strncpy(buf, tsk->comm, sizeof(buf));

To: 
strncpy(buf, tsk->comm, TASK_COMM_LEN);
buf[TASK_COMM_LEN - 1] = '\0'; // Ensure null-termination
Changed line 44
From:
if (main_extable_sort_needed && __stop___ex_table > __start___ex_table)

To:
if (main_extable_sort_needed && __stop___ex_table > __start___ex_table + 0)
Changed line 55
From: 
search_extable(__start___ex_table, __stop___ex_table-1, addr);

To:
search_extable(__start___ex_table, __stop___ex_table, addr);
Added:
KBUILD_CFLAGS := $(filter-out -Werror,$(KBUILD_CFLAGS))
KBUILD_AFLAGS := $(filter-out -Werror,$(KBUILD_AFLAGS))

To the end of the file
Commented out -Werror and moved it to the bottom of the KBUILD_CFLAGS and it is now on line 402
Removed:
KBUILD_CFLAGS := $(filter-out -Werror,$(KBUILD_CFLAGS))
KBUILD_AFLAGS := $(filter-out -Werror,$(KBUILD_AFLAGS))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant