From 418c538a2c4da6444ae81fa5bb166aa907a8a8e8 Mon Sep 17 00:00:00 2001 From: Christopher Friedt Date: Tue, 22 Mar 2022 12:23:44 -0400 Subject: [PATCH] zephyr: remove posix prefix on standard headers The upstream PR is zephyrproject-rtos/zephyr#43987 Basing off of that so that we can roll-back the many changes like the one below in `.upstream` thrift. ``` #ifdef CONFIG_SOC_POSIX #include #else #include #endif ``` Fixes #61 Signed-off-by: Christopher Friedt --- .upstream | 2 +- west.yml | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.upstream b/.upstream index 9ae087d..d71129c 160000 --- a/.upstream +++ b/.upstream @@ -1 +1 @@ -Subproject commit 9ae087df932c65f8de9e0fc2d12b828b8306b234 +Subproject commit d71129cf1c2c5013fa5daf3686e6b00ebfee8361 diff --git a/west.yml b/west.yml index 93ebbc7..78c797e 100644 --- a/west.yml +++ b/west.yml @@ -21,5 +21,7 @@ manifest: revision: master - name: zephyr remote: zephyrproject-rtos - revision: main + # Remove the need for 'posix/' prefix when including std headers + # https://github.com/zephyrproject-rtos/zephyr/pull/43987 + revision: pull/43987/head import: true