Squashed commit of the following:
arch/: Removed all references to CONFIG_DISABLE_POLL. The standard POSIX poll() can not longer be disabled.
sched/ audio/ crypto/: Removed all references to CONFIG_DISABLE_POLL. The standard POSIX poll() can not longer be disabled.
Documentation/: Removed all references to CONFIG_DISABLE_POLL. The standard POSIX poll() can not longer be disabled.
fs/: Removed all references to CONFIG_DISABLE_POLL. The standard POSIX poll() can not longer be disabled.
graphics/: Removed all references to CONFIG_DISABLE_POLL. The standard POSIX poll() can not longer be disabled.
net/: Removed all references to CONFIG_DISABLE_POLL. The standard POSIX poll() can not longer be disabled.
drivers/: Removed all references to CONFIG_DISABLE_POLL. The standard POSIX poll() can not longer be disabled.
include/, syscall/, wireless/: Removed all references to CONFIG_DISABLE_POLL. The standard POSIX poll() can not longer be disabled.
configs/: Remove all references to CONFIG_DISABLE_POLL. Standard POSIX poll can no longer be disabled.
This commit is contained in:
parent
3ab2b82b63
commit
b49be4bb20
516 changed files with 424 additions and 1705 deletions
|
|
@ -3996,12 +3996,12 @@ nsh>
|
|||
<tr>
|
||||
<td><b><code>ping</code></b></td>
|
||||
<td><code>CONFIG_NET</code> && <code>CONFIG_NET_ICMP</code> &&
|
||||
<code>CONFIG_NET_ICMP_SOCKET</code> && <code>CONFIG_SYSTEM_PING</code> && !<code>CONFIG_DISABLE_POLL</code></td>
|
||||
<code>CONFIG_NET_ICMP_SOCKET</code> && <code>CONFIG_SYSTEM_PING</code></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><b><code>ping6</code></b></td>
|
||||
<td><code>CONFIG_NET</code> && <code>CONFIG_NET_ICMPv6</code> &&
|
||||
<code>CONFIG_NET_ICMPv6_SOCKET</code> && <code>CONFIG_SYSTEM_PING6</code> && !<code>CONFIG_DISABLE_POLL</code></td>
|
||||
<code>CONFIG_NET_ICMPv6_SOCKET</code> && <code>CONFIG_SYSTEM_PING6</code></td>
|
||||
</tr>
|
||||
</table></center>
|
||||
|
||||
|
|
|
|||
|
|
@ -8616,14 +8616,7 @@ interface of the same name.
|
|||
</p>
|
||||
<p>
|
||||
<b>Configuration Settings</b>.
|
||||
In order to use the <code>poll()</code> API, the following must be defined
|
||||
in your NuttX configuration file:
|
||||
</p>
|
||||
<ul>
|
||||
<li><code>CONFIG_DISABLE_POLL</code> NOT defined</li>
|
||||
</ul>
|
||||
<p>
|
||||
In order to use the select with TCP/IP sockets test, you must also have the following additional things
|
||||
In order to use the select with TCP/IP sockets test, you must have the following things
|
||||
selected in your NuttX configuration file:
|
||||
</p>
|
||||
<ul>
|
||||
|
|
|
|||
|
|
@ -79,10 +79,8 @@ static const struct file_operations g_rngops =
|
|||
lpc54_read, /* read */
|
||||
NULL, /* write */
|
||||
NULL, /* seek */
|
||||
NULL /* ioctl */
|
||||
#ifndef CONFIG_DISABLE_POLL
|
||||
, NULL /* poll */
|
||||
#endif
|
||||
NULL, /* ioctl */
|
||||
NULL /* poll */
|
||||
#ifndef CONFIG_DISABLE_PSEUDOFS_OPERATIONS
|
||||
, NULL /* unlink */
|
||||
#endif
|
||||
|
|
|
|||
|
|
@ -3748,7 +3748,6 @@ config SAMA_TSD_RXP
|
|||
config SAMA5_TSD_NPOLLWAITERS
|
||||
int "Number poll waiters"
|
||||
default 4
|
||||
depends on !DISABLE_POLL
|
||||
---help---
|
||||
Maximum number of threads that can be waiting on poll()
|
||||
|
||||
|
|
|
|||
|
|
@ -99,15 +99,13 @@ static struct trng_dev_s g_trngdev;
|
|||
|
||||
static const struct file_operations g_trngops =
|
||||
{
|
||||
0, /* open */
|
||||
0, /* close */
|
||||
NULL, /* open */
|
||||
NULL, /* close */
|
||||
sam_read, /* read */
|
||||
0, /* write */
|
||||
0, /* seek */
|
||||
0 /* ioctl */
|
||||
#ifndef CONFIG_DISABLE_POLL
|
||||
, 0 /* poll */
|
||||
#endif
|
||||
NULL, /* write */
|
||||
NULL, /* seek */
|
||||
NULL, /* ioctl */
|
||||
NULL /* poll */
|
||||
};
|
||||
|
||||
/****************************************************************************
|
||||
|
|
|
|||
|
|
@ -185,9 +185,7 @@ struct sam_tsd_s
|
|||
* retained in the f_priv field of the 'struct file'.
|
||||
*/
|
||||
|
||||
#ifndef CONFIG_DISABLE_POLL
|
||||
struct pollfd *fds[CONFIG_SAMA5_TSD_NPOLLWAITERS];
|
||||
#endif
|
||||
};
|
||||
|
||||
/****************************************************************************
|
||||
|
|
@ -210,9 +208,7 @@ static int sam_tsd_open(struct file *filep);
|
|||
static int sam_tsd_close(struct file *filep);
|
||||
static ssize_t sam_tsd_read(struct file *filep, char *buffer, size_t len);
|
||||
static int sam_tsd_ioctl(struct file *filep, int cmd, unsigned long arg);
|
||||
#ifndef CONFIG_DISABLE_POLL
|
||||
static int sam_tsd_poll(struct file *filep, struct pollfd *fds, bool setup);
|
||||
#endif
|
||||
|
||||
/* Initialization and configuration */
|
||||
|
||||
|
|
@ -234,12 +230,10 @@ static const struct file_operations g_tsdops =
|
|||
sam_tsd_open, /* open */
|
||||
sam_tsd_close, /* close */
|
||||
sam_tsd_read, /* read */
|
||||
0, /* write */
|
||||
0, /* seek */
|
||||
sam_tsd_ioctl /* ioctl */
|
||||
#ifndef CONFIG_DISABLE_POLL
|
||||
, sam_tsd_poll /* poll */
|
||||
#endif
|
||||
NULL, /* write */
|
||||
NULL, /* seek */
|
||||
sam_tsd_ioctl, /* ioctl */
|
||||
sam_tsd_poll /* poll */
|
||||
};
|
||||
|
||||
/* The driver state structure is pre-allocated. */
|
||||
|
|
@ -256,9 +250,7 @@ static struct sam_tsd_s g_tsd;
|
|||
|
||||
static void sam_tsd_notify(struct sam_tsd_s *priv)
|
||||
{
|
||||
#ifndef CONFIG_DISABLE_POLL
|
||||
int i;
|
||||
#endif
|
||||
|
||||
/* If there are threads waiting for read data, then signal one of them
|
||||
* that the read data is available.
|
||||
|
|
@ -279,7 +271,6 @@ static void sam_tsd_notify(struct sam_tsd_s *priv)
|
|||
* then some make end up blocking after all.
|
||||
*/
|
||||
|
||||
#ifndef CONFIG_DISABLE_POLL
|
||||
for (i = 0; i < CONFIG_SAMA5_TSD_NPOLLWAITERS; i++)
|
||||
{
|
||||
struct pollfd *fds = priv->fds[i];
|
||||
|
|
@ -290,7 +281,6 @@ static void sam_tsd_notify(struct sam_tsd_s *priv)
|
|||
nxsem_post(fds->sem);
|
||||
}
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
/****************************************************************************
|
||||
|
|
@ -1071,7 +1061,6 @@ static int sam_tsd_ioctl(struct file *filep, int cmd, unsigned long arg)
|
|||
* Name: sam_tsd_poll
|
||||
****************************************************************************/
|
||||
|
||||
#ifndef CONFIG_DISABLE_POLL
|
||||
static int sam_tsd_poll(struct file *filep, struct pollfd *fds, bool setup)
|
||||
{
|
||||
struct inode *inode;
|
||||
|
|
@ -1151,7 +1140,6 @@ errout:
|
|||
sam_adc_unlock(priv->adc);
|
||||
return ret;
|
||||
}
|
||||
#endif
|
||||
|
||||
/****************************************************************************
|
||||
* Initialization and Configuration
|
||||
|
|
|
|||
|
|
@ -100,15 +100,13 @@ static struct trng_dev_s g_trngdev;
|
|||
|
||||
static const struct file_operations g_trngops =
|
||||
{
|
||||
0, /* open */
|
||||
0, /* close */
|
||||
NULL, /* open */
|
||||
NULL, /* close */
|
||||
sam_read, /* read */
|
||||
0, /* write */
|
||||
0, /* seek */
|
||||
0 /* ioctl */
|
||||
#ifndef CONFIG_DISABLE_POLL
|
||||
, 0 /* poll */
|
||||
#endif
|
||||
NULL, /* write */
|
||||
NULL, /* seek */
|
||||
NULL, /* ioctl */
|
||||
NULL /* poll */
|
||||
};
|
||||
|
||||
/****************************************************************************
|
||||
|
|
|
|||
|
|
@ -131,10 +131,8 @@ static ssize_t stm32_bbsram_write(FAR struct file *filep,
|
|||
FAR const char *buffer, size_t len);
|
||||
static int stm32_bbsram_ioctl(FAR struct file *filep, int cmd,
|
||||
unsigned long arg);
|
||||
#ifndef CONFIG_DISABLE_POLL
|
||||
static int stm32_bbsram_poll(FAR struct file *filep, FAR struct pollfd *fds,
|
||||
bool setup);
|
||||
#endif
|
||||
#ifndef CONFIG_DISABLE_PSEUDOFS_OPERATIONS
|
||||
static int stm32_bbsram_unlink(FAR struct inode *inode);
|
||||
#endif
|
||||
|
|
@ -155,9 +153,7 @@ static const struct file_operations stm32_bbsram_fops =
|
|||
.write = stm32_bbsram_write,
|
||||
.seek = stm32_bbsram_seek,
|
||||
.ioctl = stm32_bbsram_ioctl,
|
||||
#ifndef CONFIG_DISABLE_POLL
|
||||
.poll = stm32_bbsram_poll,
|
||||
#endif
|
||||
#ifndef CONFIG_DISABLE_PSEUDOFS_OPERATIONS
|
||||
.unlink = stm32_bbsram_unlink,
|
||||
#endif
|
||||
|
|
@ -545,7 +541,6 @@ static ssize_t stm32_bbsram_write(FAR struct file *filep, FAR const char *buffer
|
|||
* Name: stm32_bbsram_poll
|
||||
****************************************************************************/
|
||||
|
||||
#ifndef CONFIG_DISABLE_POLL
|
||||
static int stm32_bbsram_poll(FAR struct file *filep, FAR struct pollfd *fds,
|
||||
bool setup)
|
||||
{
|
||||
|
|
@ -560,7 +555,6 @@ static int stm32_bbsram_poll(FAR struct file *filep, FAR struct pollfd *fds,
|
|||
|
||||
return OK;
|
||||
}
|
||||
#endif
|
||||
|
||||
/****************************************************************************
|
||||
* Name: stm32_bbsram_ioctl
|
||||
|
|
|
|||
|
|
@ -797,10 +797,8 @@ static const struct file_operations hrtim_fops =
|
|||
NULL, /* read */
|
||||
NULL, /* write */
|
||||
NULL, /* seek */
|
||||
stm32_hrtim_ioctl /* ioctl */
|
||||
#ifndef CONFIG_DISABLE_POLL
|
||||
, NULL /* poll */
|
||||
#endif
|
||||
stm32_hrtim_ioctl, /* ioctl */
|
||||
NULL /* poll */
|
||||
#ifndef CONFIG_DISABLE_PSEUDOFS_OPERATIONS
|
||||
, NULL /* unlink */
|
||||
#endif
|
||||
|
|
|
|||
|
|
@ -89,17 +89,15 @@ static struct rng_dev_s g_rngdev;
|
|||
|
||||
static const struct file_operations g_rngops =
|
||||
{
|
||||
0, /* open */
|
||||
0, /* close */
|
||||
NULL, /* open */
|
||||
NULL, /* close */
|
||||
stm32_rng_read, /* read */
|
||||
0, /* write */
|
||||
0, /* seek */
|
||||
0 /* ioctl */
|
||||
#ifndef CONFIG_DISABLE_POLL
|
||||
, 0 /* poll */
|
||||
#endif
|
||||
NULL, /* write */
|
||||
NULL, /* seek */
|
||||
NULL, /* ioctl */
|
||||
NULL /* poll */
|
||||
#ifndef CONFIG_DISABLE_PSEUDOFS_OPERATIONS
|
||||
, 0 /* unlink */
|
||||
, NULL /* unlink */
|
||||
#endif
|
||||
};
|
||||
|
||||
|
|
|
|||
|
|
@ -89,17 +89,15 @@ static struct rng_dev_s g_rngdev;
|
|||
|
||||
static const struct file_operations g_rngops =
|
||||
{
|
||||
0, /* open */
|
||||
0, /* close */
|
||||
NULL, /* open */
|
||||
NULL, /* close */
|
||||
stm32_rng_read, /* read */
|
||||
0, /* write */
|
||||
0, /* seek */
|
||||
0 /* ioctl */
|
||||
#ifndef CONFIG_DISABLE_POLL
|
||||
, 0 /* poll */
|
||||
#endif
|
||||
NULL, /* write */
|
||||
NULL, /* seek */
|
||||
NULL, /* ioctl */
|
||||
NULL /* poll */
|
||||
#ifndef CONFIG_DISABLE_PSEUDOFS_OPERATIONS
|
||||
, 0 /* unlink */
|
||||
, NULL /* unlink */
|
||||
#endif
|
||||
};
|
||||
|
||||
|
|
|
|||
|
|
@ -131,10 +131,8 @@ static ssize_t stm32_bbsram_write(FAR struct file *filep,
|
|||
FAR const char *buffer, size_t len);
|
||||
static int stm32_bbsram_ioctl(FAR struct file *filep, int cmd,
|
||||
unsigned long arg);
|
||||
#ifndef CONFIG_DISABLE_POLL
|
||||
static int stm32_bbsram_poll(FAR struct file *filep, FAR struct pollfd *fds,
|
||||
bool setup);
|
||||
#endif
|
||||
#ifndef CONFIG_DISABLE_PSEUDOFS_OPERATIONS
|
||||
static int stm32_bbsram_unlink(FAR struct inode *inode);
|
||||
#endif
|
||||
|
|
@ -155,9 +153,7 @@ static const struct file_operations stm32_bbsram_fops =
|
|||
.write = stm32_bbsram_write,
|
||||
.seek = stm32_bbsram_seek,
|
||||
.ioctl = stm32_bbsram_ioctl,
|
||||
#ifndef CONFIG_DISABLE_POLL
|
||||
.poll = stm32_bbsram_poll,
|
||||
#endif
|
||||
#ifndef CONFIG_DISABLE_PSEUDOFS_OPERATIONS
|
||||
.unlink = stm32_bbsram_unlink,
|
||||
#endif
|
||||
|
|
@ -546,7 +542,6 @@ static ssize_t stm32_bbsram_write(FAR struct file *filep,
|
|||
* Name: stm32_bbsram_poll
|
||||
****************************************************************************/
|
||||
|
||||
#ifndef CONFIG_DISABLE_POLL
|
||||
static int stm32_bbsram_poll(FAR struct file *filep, FAR struct pollfd *fds,
|
||||
bool setup)
|
||||
{
|
||||
|
|
@ -561,7 +556,6 @@ static int stm32_bbsram_poll(FAR struct file *filep, FAR struct pollfd *fds,
|
|||
|
||||
return OK;
|
||||
}
|
||||
#endif
|
||||
|
||||
/****************************************************************************
|
||||
* Name: stm32_bbsram_ioctl
|
||||
|
|
|
|||
|
|
@ -90,17 +90,15 @@ static struct rng_dev_s g_rngdev;
|
|||
|
||||
static const struct file_operations g_rngops =
|
||||
{
|
||||
0, /* open */
|
||||
0, /* close */
|
||||
NULL, /* open */
|
||||
NULL, /* close */
|
||||
stm32_rngread, /* read */
|
||||
0, /* write */
|
||||
0, /* seek */
|
||||
0 /* ioctl */
|
||||
#ifndef CONFIG_DISABLE_POLL
|
||||
, 0 /* poll */
|
||||
#endif
|
||||
NULL, /* write */
|
||||
NULL, /* seek */
|
||||
NULL, /* ioctl */
|
||||
NULL /* poll */
|
||||
#ifndef CONFIG_DISABLE_PSEUDOFS_OPERATIONS
|
||||
, 0 /* unlink */
|
||||
, NULL /* unlink */
|
||||
#endif
|
||||
};
|
||||
|
||||
|
|
|
|||
|
|
@ -90,15 +90,13 @@ static struct rng_dev_s g_rngdev;
|
|||
|
||||
static const struct file_operations g_rngops =
|
||||
{
|
||||
0, /* open */
|
||||
0, /* close */
|
||||
NULL, /* open */
|
||||
NULL, /* close */
|
||||
stm32l4_rngread, /* read */
|
||||
0, /* write */
|
||||
0, /* seek */
|
||||
0 /* ioctl */
|
||||
#ifndef CONFIG_DISABLE_POLL
|
||||
, 0 /* poll */
|
||||
#endif
|
||||
NULL, /* write */
|
||||
NULL, /* seek */
|
||||
NULL, /* ioctl */
|
||||
NULL /* poll */
|
||||
#ifndef CONFIG_DISABLE_PSEUDOFS_OPERATIONS
|
||||
, 0 /* unlink */
|
||||
#endif
|
||||
|
|
|
|||
|
|
@ -222,7 +222,7 @@ endif # SIM_X11FB && INPUT
|
|||
config SIM_TCNWAITERS
|
||||
bool "Maximum number poll() waiters"
|
||||
default 4
|
||||
depends on !POLL_DISABLE && SIM_TOUCHSCREEN
|
||||
depends on SIM_TOUCHSCREEN
|
||||
---help---
|
||||
The maximum number of threads that can be waiting on poll() for a
|
||||
touchscreen event. Default: 4
|
||||
|
|
|
|||
|
|
@ -57,10 +57,8 @@ static ssize_t devconsole_read(FAR struct file *filep, FAR char *buffer,
|
|||
size_t buflen);
|
||||
static ssize_t devconsole_write(FAR struct file *filep,
|
||||
FAR const char *buffer, size_t buflen);
|
||||
#ifndef CONFIG_DISABLE_POLL
|
||||
static int devconsole_poll(FAR struct file *filep, FAR struct pollfd *fds,
|
||||
bool setup);
|
||||
#endif
|
||||
|
||||
/****************************************************************************
|
||||
* Private Data
|
||||
|
|
@ -70,9 +68,7 @@ static const struct file_operations devconsole_fops =
|
|||
{
|
||||
.read = devconsole_read,
|
||||
.write = devconsole_write,
|
||||
#ifndef CONFIG_DISABLE_POLL
|
||||
.poll = devconsole_poll,
|
||||
#endif
|
||||
};
|
||||
|
||||
/****************************************************************************
|
||||
|
|
@ -151,13 +147,11 @@ static ssize_t devconsole_write(struct file *filep, const char *buffer, size_t l
|
|||
* Name: devconsole_poll
|
||||
****************************************************************************/
|
||||
|
||||
#ifndef CONFIG_DISABLE_POLL
|
||||
static int devconsole_poll(FAR struct file *filep, FAR struct pollfd *fds,
|
||||
bool setup)
|
||||
{
|
||||
return OK;
|
||||
}
|
||||
#endif
|
||||
|
||||
/****************************************************************************
|
||||
* Public Functions
|
||||
|
|
|
|||
|
|
@ -69,12 +69,8 @@
|
|||
****************************************************************************/
|
||||
/* Configuration ************************************************************/
|
||||
|
||||
#ifdef CONFIG_DISABLE_POLL
|
||||
# undef CONFIG_SIM_TCNWAITERS
|
||||
#else
|
||||
# ifndef CONFIG_SIM_TCNWAITERS
|
||||
# define CONFIG_SIM_TCNWAITERS 4
|
||||
# endif
|
||||
#ifndef CONFIG_SIM_TCNWAITERS
|
||||
# define CONFIG_SIM_TCNWAITERS 4
|
||||
#endif
|
||||
|
||||
/* Driver support ***********************************************************/
|
||||
|
|
@ -127,9 +123,7 @@ struct up_dev_s
|
|||
* retained in the f_priv field of the 'struct file'.
|
||||
*/
|
||||
|
||||
#ifndef CONFIG_DISABLE_POLL
|
||||
struct pollfd *fds[CONFIG_SIM_TCNWAITERS];
|
||||
#endif
|
||||
};
|
||||
|
||||
/****************************************************************************
|
||||
|
|
@ -148,9 +142,7 @@ static int up_open(FAR struct file *filep);
|
|||
static int up_close(FAR struct file *filep);
|
||||
static ssize_t up_read(FAR struct file *filep, FAR char *buffer, size_t len);
|
||||
static int up_ioctl(FAR struct file *filep, int cmd, unsigned long arg);
|
||||
#ifndef CONFIG_DISABLE_POLL
|
||||
static int up_poll(FAR struct file *filep, struct pollfd *fds, bool setup);
|
||||
#endif
|
||||
|
||||
/****************************************************************************
|
||||
* Private Data
|
||||
|
|
@ -163,12 +155,10 @@ static const struct file_operations up_fops =
|
|||
up_open, /* open */
|
||||
up_close, /* close */
|
||||
up_read, /* read */
|
||||
0, /* write */
|
||||
0, /* seek */
|
||||
up_ioctl /* ioctl */
|
||||
#ifndef CONFIG_DISABLE_POLL
|
||||
, up_poll /* poll */
|
||||
#endif
|
||||
NULL, /* write */
|
||||
NULL, /* seek */
|
||||
up_ioctl, /* ioctl */
|
||||
up_poll /* poll */
|
||||
};
|
||||
|
||||
/* Only one simulated touchscreen is supported so the driver state
|
||||
|
|
@ -187,9 +177,7 @@ static struct up_dev_s g_simtouchscreen;
|
|||
|
||||
static void up_notify(FAR struct up_dev_s *priv)
|
||||
{
|
||||
#ifndef CONFIG_DISABLE_POLL
|
||||
int i;
|
||||
#endif
|
||||
|
||||
/* If there are threads waiting for read data, then signal one of them
|
||||
* that the read data is available.
|
||||
|
|
@ -211,7 +199,6 @@ static void up_notify(FAR struct up_dev_s *priv)
|
|||
* then some make end up blocking after all.
|
||||
*/
|
||||
|
||||
#ifndef CONFIG_DISABLE_POLL
|
||||
for (i = 0; i < CONFIG_SIM_TCNWAITERS; i++)
|
||||
{
|
||||
struct pollfd *fds = priv->fds[i];
|
||||
|
|
@ -222,7 +209,6 @@ static void up_notify(FAR struct up_dev_s *priv)
|
|||
nxsem_post(fds->sem);
|
||||
}
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
/****************************************************************************
|
||||
|
|
@ -530,7 +516,6 @@ static int up_ioctl(FAR struct file *filep, int cmd, unsigned long arg)
|
|||
* Name: up_poll
|
||||
****************************************************************************/
|
||||
|
||||
#ifndef CONFIG_DISABLE_POLL
|
||||
static int up_poll(FAR struct file *filep, FAR struct pollfd *fds,
|
||||
bool setup)
|
||||
{
|
||||
|
|
@ -616,7 +601,6 @@ errout:
|
|||
nxsem_post(&priv->devsem);
|
||||
return ret;
|
||||
}
|
||||
#endif
|
||||
|
||||
/****************************************************************************
|
||||
* Public Functions
|
||||
|
|
|
|||
|
|
@ -122,11 +122,9 @@ static const struct file_operations g_audioops =
|
|||
audio_close, /* close */
|
||||
audio_read, /* read */
|
||||
audio_write, /* write */
|
||||
0, /* seek */
|
||||
NULL, /* seek */
|
||||
audio_ioctl /* ioctl */
|
||||
#ifndef CONFIG_DISABLE_POLL
|
||||
, 0 /* poll */
|
||||
#endif
|
||||
NULL /* poll */
|
||||
};
|
||||
|
||||
/****************************************************************************
|
||||
|
|
|
|||
|
|
@ -19,7 +19,6 @@ CONFIG_DEFAULT_SMALL=y
|
|||
CONFIG_DEV_LOWCONSOLE=y
|
||||
CONFIG_DISABLE_MOUNTPOINT=y
|
||||
CONFIG_DISABLE_MQUEUE=y
|
||||
CONFIG_DISABLE_POLL=y
|
||||
CONFIG_DISABLE_PTHREAD=y
|
||||
CONFIG_EXAMPLES_HELLO=y
|
||||
CONFIG_HOST_WINDOWS=y
|
||||
|
|
|
|||
|
|
@ -20,7 +20,6 @@ CONFIG_DEFAULT_SMALL=y
|
|||
CONFIG_DEV_LOWCONSOLE=y
|
||||
CONFIG_DISABLE_MOUNTPOINT=y
|
||||
CONFIG_DISABLE_MQUEUE=y
|
||||
CONFIG_DISABLE_POLL=y
|
||||
CONFIG_DISABLE_PTHREAD=y
|
||||
CONFIG_EXAMPLES_HELLO=y
|
||||
CONFIG_HOST_WINDOWS=y
|
||||
|
|
|
|||
|
|
@ -21,7 +21,6 @@ CONFIG_DEBUG_SYMBOLS=y
|
|||
CONFIG_DEFAULT_SMALL=y
|
||||
CONFIG_DISABLE_MOUNTPOINT=y
|
||||
CONFIG_DISABLE_MQUEUE=y
|
||||
CONFIG_DISABLE_POLL=y
|
||||
CONFIG_DISABLE_PTHREAD=y
|
||||
CONFIG_HOST_WINDOWS=y
|
||||
CONFIG_IDLETHREAD_STACKSIZE=128
|
||||
|
|
|
|||
|
|
@ -21,7 +21,6 @@ CONFIG_AVR32_GPIOIRQSETA=0
|
|||
CONFIG_AVR32_GPIOIRQSETB=0x0000000c
|
||||
CONFIG_AVR32_USART1=y
|
||||
CONFIG_BOARD_LOOPSPERMSEC=1140
|
||||
CONFIG_DISABLE_POLL=y
|
||||
CONFIG_ENDIAN_BIG=y
|
||||
CONFIG_FS_FAT=y
|
||||
CONFIG_HOST_WINDOWS=y
|
||||
|
|
|
|||
|
|
@ -22,7 +22,6 @@ CONFIG_BOARD_LOOPSPERMSEC=1140
|
|||
CONFIG_DEV_LOWCONSOLE=y
|
||||
CONFIG_DISABLE_ENVIRON=y
|
||||
CONFIG_DISABLE_MOUNTPOINT=y
|
||||
CONFIG_DISABLE_POLL=y
|
||||
CONFIG_ENDIAN_BIG=y
|
||||
CONFIG_HOST_WINDOWS=y
|
||||
CONFIG_INTELHEX_BINARY=y
|
||||
|
|
|
|||
|
|
@ -21,7 +21,6 @@ CONFIG_BUILTIN=y
|
|||
CONFIG_DISABLE_ENVIRON=y
|
||||
CONFIG_DISABLE_MOUNTPOINT=y
|
||||
CONFIG_DISABLE_MQUEUE=y
|
||||
CONFIG_DISABLE_POLL=y
|
||||
CONFIG_DISABLE_POSIX_TIMERS=y
|
||||
CONFIG_DISABLE_PSEUDOFS_OPERATIONS=y
|
||||
CONFIG_EXAMPLES_ADC=y
|
||||
|
|
|
|||
|
|
@ -18,7 +18,6 @@ CONFIG_BUILTIN=y
|
|||
CONFIG_DISABLE_ENVIRON=y
|
||||
CONFIG_DISABLE_MOUNTPOINT=y
|
||||
CONFIG_DISABLE_MQUEUE=y
|
||||
CONFIG_DISABLE_POLL=y
|
||||
CONFIG_DISABLE_POSIX_TIMERS=y
|
||||
CONFIG_DISABLE_PSEUDOFS_OPERATIONS=y
|
||||
CONFIG_EXAMPLES_HELLO=y
|
||||
|
|
|
|||
|
|
@ -19,7 +19,6 @@ CONFIG_ARCH_STACKDUMP=y
|
|||
CONFIG_BOARD_LOOPSPERMSEC=2796
|
||||
CONFIG_BUILTIN=y
|
||||
CONFIG_DEBUG_FULLOPT=y
|
||||
CONFIG_DISABLE_POLL=y
|
||||
CONFIG_EXAMPLES_NXLINES=y
|
||||
CONFIG_EXAMPLES_NXLINES_BORDERWIDTH=1
|
||||
CONFIG_EXAMPLES_NXLINES_BPP=1
|
||||
|
|
|
|||
|
|
@ -18,7 +18,6 @@ CONFIG_BUILTIN=y
|
|||
CONFIG_DISABLE_ENVIRON=y
|
||||
CONFIG_DISABLE_MOUNTPOINT=y
|
||||
CONFIG_DISABLE_MQUEUE=y
|
||||
CONFIG_DISABLE_POLL=y
|
||||
CONFIG_DISABLE_POSIX_TIMERS=y
|
||||
CONFIG_DISABLE_PSEUDOFS_OPERATIONS=y
|
||||
CONFIG_DRIVERS_LPWAN=y
|
||||
|
|
|
|||
|
|
@ -16,7 +16,6 @@ CONFIG_ARCH_CHIP_STM32L4=y
|
|||
CONFIG_ARCH_STACKDUMP=y
|
||||
CONFIG_BOARD_LOOPSPERMSEC=8025
|
||||
CONFIG_BUILTIN=y
|
||||
CONFIG_DISABLE_POLL=y
|
||||
CONFIG_FS_PROCFS=y
|
||||
CONFIG_HAVE_CXX=y
|
||||
CONFIG_HAVE_CXXINITIALIZE=y
|
||||
|
|
|
|||
|
|
@ -23,7 +23,6 @@ CONFIG_BOARD_LOOPSPERMSEC=49341
|
|||
CONFIG_BOOT_RUNFROMSDRAM=y
|
||||
CONFIG_BUILTIN=y
|
||||
CONFIG_DISABLE_ENVIRON=y
|
||||
CONFIG_DISABLE_POLL=y
|
||||
CONFIG_SYSTEM_NSH=y
|
||||
CONFIG_SYSTEM_NSH_CXXINITIALIZE=y
|
||||
CONFIG_FAT_LCNAMES=y
|
||||
|
|
|
|||
|
|
@ -16,7 +16,6 @@ CONFIG_BOARD_LOOPSPERMSEC=1250
|
|||
CONFIG_DISABLE_ENVIRON=y
|
||||
CONFIG_DISABLE_MOUNTPOINT=y
|
||||
CONFIG_DISABLE_MQUEUE=y
|
||||
CONFIG_DISABLE_POLL=y
|
||||
CONFIG_EXAMPLES_WEBSERVER=y
|
||||
CONFIG_IDLETHREAD_STACKSIZE=4096
|
||||
CONFIG_MAX_TASKS=64
|
||||
|
|
|
|||
|
|
@ -16,7 +16,6 @@ CONFIG_BOARD_LOOPSPERMSEC=1250
|
|||
CONFIG_DISABLE_ENVIRON=y
|
||||
CONFIG_DISABLE_MOUNTPOINT=y
|
||||
CONFIG_DISABLE_MQUEUE=y
|
||||
CONFIG_DISABLE_POLL=y
|
||||
CONFIG_DISABLE_PTHREAD=y
|
||||
CONFIG_EXAMPLES_NETTEST=y
|
||||
CONFIG_EXAMPLES_NETTEST_NOMAC=y
|
||||
|
|
|
|||
|
|
@ -19,7 +19,6 @@ CONFIG_BOARD_LOOPSPERMSEC=1250
|
|||
CONFIG_DISABLE_ENVIRON=y
|
||||
CONFIG_DISABLE_MOUNTPOINT=y
|
||||
CONFIG_DISABLE_MQUEUE=y
|
||||
CONFIG_DISABLE_POLL=y
|
||||
CONFIG_IDLETHREAD_STACKSIZE=4096
|
||||
CONFIG_MAX_TASKS=16
|
||||
CONFIG_NET=y
|
||||
|
|
|
|||
|
|
@ -17,7 +17,6 @@ CONFIG_ARM_MPU=y
|
|||
CONFIG_BOARD_LATE_INITIALIZE=y
|
||||
CONFIG_BOARD_LOOPSPERMSEC=16717
|
||||
CONFIG_BUILD_PROTECTED=y
|
||||
CONFIG_DISABLE_POLL=y
|
||||
CONFIG_SYSTEM_NSH=y
|
||||
CONFIG_SYSTEM_NSH_CXXINITIALIZE=y
|
||||
CONFIG_FS_PROCFS=y
|
||||
|
|
|
|||
|
|
@ -16,7 +16,6 @@ CONFIG_ARCH_STACKDUMP=y
|
|||
CONFIG_BOARD_LATE_INITIALIZE=y
|
||||
CONFIG_BOARD_LOOPSPERMSEC=16717
|
||||
CONFIG_BUILTIN=y
|
||||
CONFIG_DISABLE_POLL=y
|
||||
CONFIG_DRIVERS_IEEE802154=y
|
||||
CONFIG_DRIVERS_WIRELESS=y
|
||||
CONFIG_SYSTEM_NSH=y
|
||||
|
|
|
|||
|
|
@ -16,7 +16,6 @@ CONFIG_ARCH_STACKDUMP=y
|
|||
CONFIG_BOARD_LATE_INITIALIZE=y
|
||||
CONFIG_BOARD_LOOPSPERMSEC=16717
|
||||
CONFIG_BUILTIN=y
|
||||
CONFIG_DISABLE_POLL=y
|
||||
CONFIG_FS_PROCFS=y
|
||||
CONFIG_FS_WRITABLE=y
|
||||
CONFIG_HAVE_CXX=y
|
||||
|
|
|
|||
|
|
@ -22,7 +22,6 @@ CONFIG_CDCACM=y
|
|||
CONFIG_CDCACM_CONSOLE=y
|
||||
CONFIG_CDCACM_RXBUFSIZE=256
|
||||
CONFIG_CDCACM_TXBUFSIZE=256
|
||||
CONFIG_DISABLE_POLL=y
|
||||
CONFIG_FAT_LCNAMES=y
|
||||
CONFIG_FAT_LFN=y
|
||||
CONFIG_FS_FAT=y
|
||||
|
|
|
|||
|
|
@ -17,7 +17,6 @@ CONFIG_BOARD_LOOPSPERMSEC=5483
|
|||
CONFIG_DISABLE_ENVIRON=y
|
||||
CONFIG_DISABLE_MOUNTPOINT=y
|
||||
CONFIG_DISABLE_MQUEUE=y
|
||||
CONFIG_DISABLE_POLL=y
|
||||
CONFIG_DISABLE_POSIX_TIMERS=y
|
||||
CONFIG_DISABLE_PTHREAD=y
|
||||
CONFIG_HCS12_NONBANKED=y
|
||||
|
|
|
|||
|
|
@ -20,7 +20,6 @@ CONFIG_ARCH_STACKDUMP=y
|
|||
CONFIG_ARM_TOOLCHAIN_CODESOURCERYW=y
|
||||
CONFIG_BOARD_LOOPSPERMSEC=16945
|
||||
CONFIG_BOOT_RUNFROMISRAM=y
|
||||
CONFIG_DISABLE_POLL=y
|
||||
CONFIG_FS_FAT=y
|
||||
CONFIG_HOST_WINDOWS=y
|
||||
CONFIG_LPC31_UART=y
|
||||
|
|
|
|||
|
|
@ -18,7 +18,6 @@ CONFIG_ARM_TOOLCHAIN_CODESOURCERYW=y
|
|||
CONFIG_BOARD_LOOPSPERMSEC=16945
|
||||
CONFIG_BOOT_RUNFROMISRAM=y
|
||||
CONFIG_BUILD_2PASS=y
|
||||
CONFIG_DISABLE_POLL=y
|
||||
CONFIG_FS_FAT=y
|
||||
CONFIG_HOST_WINDOWS=y
|
||||
CONFIG_LPC31_SPI=y
|
||||
|
|
|
|||
|
|
@ -18,7 +18,6 @@ CONFIG_BOARD_LOOPSPERMSEC=16945
|
|||
CONFIG_BOOT_RUNFROMISRAM=y
|
||||
CONFIG_DEV_LOWCONSOLE=y
|
||||
CONFIG_DISABLE_ENVIRON=y
|
||||
CONFIG_DISABLE_POLL=y
|
||||
CONFIG_EXAMPLES_USBSERIAL=y
|
||||
CONFIG_HOST_WINDOWS=y
|
||||
CONFIG_LIB_BOARDCTL=y
|
||||
|
|
|
|||
|
|
@ -19,7 +19,6 @@ CONFIG_BOOT_RUNFROMISRAM=y
|
|||
CONFIG_DEV_LOWCONSOLE=y
|
||||
CONFIG_DISABLE_ENVIRON=y
|
||||
CONFIG_DISABLE_MOUNTPOINT=y
|
||||
CONFIG_DISABLE_POLL=y
|
||||
CONFIG_HOST_WINDOWS=y
|
||||
CONFIG_LPC31_UART=y
|
||||
CONFIG_MAX_TASKS=16
|
||||
|
|
|
|||
|
|
@ -18,7 +18,6 @@ CONFIG_DEV_LOWCONSOLE=y
|
|||
CONFIG_DISABLE_ENVIRON=y
|
||||
CONFIG_DISABLE_MOUNTPOINT=y
|
||||
CONFIG_DISABLE_MQUEUE=y
|
||||
CONFIG_DISABLE_POLL=y
|
||||
CONFIG_EXAMPLES_WEBSERVER=y
|
||||
CONFIG_HOST_WINDOWS=y
|
||||
CONFIG_MAX_TASKS=8
|
||||
|
|
|
|||
|
|
@ -18,7 +18,6 @@ CONFIG_DEV_LOWCONSOLE=y
|
|||
CONFIG_DISABLE_ENVIRON=y
|
||||
CONFIG_DISABLE_MOUNTPOINT=y
|
||||
CONFIG_DISABLE_MQUEUE=y
|
||||
CONFIG_DISABLE_POLL=y
|
||||
CONFIG_DISABLE_PTHREAD=y
|
||||
CONFIG_EXAMPLES_NETTEST=y
|
||||
CONFIG_HOST_WINDOWS=y
|
||||
|
|
|
|||
|
|
@ -17,7 +17,6 @@ CONFIG_BOARD_LATE_INITIALIZE=y
|
|||
CONFIG_BOARD_LOOPSPERMSEC=4531
|
||||
CONFIG_DEV_LOWCONSOLE=y
|
||||
CONFIG_DISABLE_ENVIRON=y
|
||||
CONFIG_DISABLE_POLL=y
|
||||
CONFIG_EXAMPLES_NXFLAT=y
|
||||
CONFIG_FS_ROMFS=y
|
||||
CONFIG_HOST_WINDOWS=y
|
||||
|
|
|
|||
|
|
@ -17,7 +17,6 @@ CONFIG_ARMV7M_TOOLCHAIN_CODESOURCERYW=y
|
|||
CONFIG_BOARD_LOOPSPERMSEC=2662
|
||||
CONFIG_DISABLE_ENVIRON=y
|
||||
CONFIG_DISABLE_MOUNTPOINT=y
|
||||
CONFIG_DISABLE_POLL=y
|
||||
CONFIG_EFM32_GPIO_IRQ=y
|
||||
CONFIG_EFM32_LEUART0=y
|
||||
CONFIG_HOST_WINDOWS=y
|
||||
|
|
|
|||
|
|
@ -17,7 +17,6 @@ CONFIG_ARMV7M_TOOLCHAIN_CODESOURCERYW=y
|
|||
CONFIG_BOARD_LOOPSPERMSEC=4787
|
||||
CONFIG_DISABLE_ENVIRON=y
|
||||
CONFIG_DISABLE_MOUNTPOINT=y
|
||||
CONFIG_DISABLE_POLL=y
|
||||
CONFIG_EFM32_GPIO_IRQ=y
|
||||
CONFIG_EFM32_LEUART0=y
|
||||
CONFIG_HOST_WINDOWS=y
|
||||
|
|
|
|||
|
|
@ -17,7 +17,6 @@ CONFIG_ARCH_XTENSA=y
|
|||
CONFIG_BOARD_LOOPSPERMSEC=16717
|
||||
CONFIG_BUILTIN=y
|
||||
CONFIG_DEBUG_FEATURES=y
|
||||
CONFIG_DISABLE_POLL=y
|
||||
CONFIG_ESP32_UART0=y
|
||||
CONFIG_EXPERIMENTAL=y
|
||||
CONFIG_FS_PROCFS=y
|
||||
|
|
|
|||
|
|
@ -14,7 +14,6 @@ CONFIG_ARCH_XTENSA=y
|
|||
CONFIG_BOARD_LOOPSPERMSEC=16717
|
||||
CONFIG_BUILTIN=y
|
||||
CONFIG_DEBUG_FEATURES=y
|
||||
CONFIG_DISABLE_POLL=y
|
||||
CONFIG_ESP32_UART0=y
|
||||
CONFIG_EXPERIMENTAL=y
|
||||
CONFIG_FS_PROCFS=y
|
||||
|
|
|
|||
|
|
@ -17,7 +17,6 @@ CONFIG_ARCH_XTENSA=y
|
|||
CONFIG_BOARD_LOOPSPERMSEC=16717
|
||||
CONFIG_BUILTIN=y
|
||||
CONFIG_DEBUG_FEATURES=y
|
||||
CONFIG_DISABLE_POLL=y
|
||||
CONFIG_ESP32_UART0=y
|
||||
CONFIG_EXPERIMENTAL=y
|
||||
CONFIG_FS_PROCFS=y
|
||||
|
|
|
|||
|
|
@ -17,7 +17,6 @@ CONFIG_DEV_LOWCONSOLE=y
|
|||
CONFIG_DISABLE_ENVIRON=y
|
||||
CONFIG_DISABLE_MOUNTPOINT=y
|
||||
CONFIG_DISABLE_MQUEUE=y
|
||||
CONFIG_DISABLE_POLL=y
|
||||
CONFIG_DISABLE_POSIX_TIMERS=y
|
||||
CONFIG_DISABLE_PTHREAD=y
|
||||
CONFIG_EZ80_UART0=y
|
||||
|
|
|
|||
|
|
@ -18,7 +18,6 @@ CONFIG_DEV_LOWCONSOLE=y
|
|||
CONFIG_DISABLE_ENVIRON=y
|
||||
CONFIG_DISABLE_MOUNTPOINT=y
|
||||
CONFIG_DISABLE_MQUEUE=y
|
||||
CONFIG_DISABLE_POLL=y
|
||||
CONFIG_DISABLE_PTHREAD=y
|
||||
CONFIG_ETH0_PHY_AM79C874=y
|
||||
CONFIG_EXAMPLES_DHCPD_IPADDR=0x0a000001
|
||||
|
|
|
|||
|
|
@ -17,7 +17,6 @@ CONFIG_DEV_LOWCONSOLE=y
|
|||
CONFIG_DISABLE_ENVIRON=y
|
||||
CONFIG_DISABLE_MOUNTPOINT=y
|
||||
CONFIG_DISABLE_MQUEUE=y
|
||||
CONFIG_DISABLE_POLL=y
|
||||
CONFIG_ETH0_PHY_AM79C874=y
|
||||
CONFIG_EXAMPLES_WEBSERVER=y
|
||||
CONFIG_EZ80_EMAC=y
|
||||
|
|
|
|||
|
|
@ -17,7 +17,6 @@ CONFIG_DEV_LOWCONSOLE=y
|
|||
CONFIG_DISABLE_ENVIRON=y
|
||||
CONFIG_DISABLE_MOUNTPOINT=y
|
||||
CONFIG_DISABLE_MQUEUE=y
|
||||
CONFIG_DISABLE_POLL=y
|
||||
CONFIG_DISABLE_PTHREAD=y
|
||||
CONFIG_ETH0_PHY_AM79C874=y
|
||||
CONFIG_EXAMPLES_NETTEST_NOMAC=y
|
||||
|
|
|
|||
|
|
@ -17,7 +17,6 @@ CONFIG_ARCH_CHIP_MK28FN2M0VMI15=y
|
|||
CONFIG_ARCH_STACKDUMP=y
|
||||
CONFIG_BOARD_LOOPSPERMSEC=10401
|
||||
CONFIG_BUILTIN=y
|
||||
CONFIG_DISABLE_POLL=y
|
||||
CONFIG_FS_PROCFS=y
|
||||
CONFIG_HOST_WINDOWS=y
|
||||
CONFIG_INTELHEX_BINARY=y
|
||||
|
|
|
|||
|
|
@ -19,7 +19,6 @@ CONFIG_DEBUG_FULLOPT=y
|
|||
CONFIG_DEBUG_SYMBOLS=y
|
||||
CONFIG_DISABLE_ENVIRON=y
|
||||
CONFIG_DISABLE_MQUEUE=y
|
||||
CONFIG_DISABLE_POLL=y
|
||||
CONFIG_DISABLE_POSIX_TIMERS=y
|
||||
CONFIG_EXAMPLES_PWM=y
|
||||
CONFIG_FAT_LCNAMES=y
|
||||
|
|
|
|||
|
|
@ -23,7 +23,6 @@ CONFIG_BUILTIN=y
|
|||
CONFIG_DEFAULT_SMALL=y
|
||||
CONFIG_DISABLE_MOUNTPOINT=y
|
||||
CONFIG_DISABLE_MQUEUE=y
|
||||
CONFIG_DISABLE_POLL=y
|
||||
CONFIG_EXAMPLES_PWM=y
|
||||
CONFIG_KL_TPM0=y
|
||||
CONFIG_KL_TPM0_PWM=y
|
||||
|
|
|
|||
|
|
@ -23,7 +23,6 @@ CONFIG_BUILTIN=y
|
|||
CONFIG_DEFAULT_SMALL=y
|
||||
CONFIG_DISABLE_MOUNTPOINT=y
|
||||
CONFIG_DISABLE_MQUEUE=y
|
||||
CONFIG_DISABLE_POLL=y
|
||||
CONFIG_EXAMPLES_PWM=y
|
||||
CONFIG_KL_TPM0=y
|
||||
CONFIG_KL_TPM0_PWM=y
|
||||
|
|
|
|||
|
|
@ -18,7 +18,6 @@ CONFIG_BUILTIN=y
|
|||
CONFIG_DEBUG_FULLOPT=y
|
||||
CONFIG_DEBUG_SYMBOLS=y
|
||||
CONFIG_DEV_ZERO=y
|
||||
CONFIG_DISABLE_POLL=y
|
||||
CONFIG_FS_PROCFS=y
|
||||
CONFIG_FS_WRITABLE=y
|
||||
CONFIG_IDLETHREAD_STACKSIZE=2048
|
||||
|
|
|
|||
|
|
@ -17,7 +17,6 @@ CONFIG_ARCH_IRQBUTTONS=y
|
|||
CONFIG_ARCH_STACKDUMP=y
|
||||
CONFIG_BINFMT_DISABLE=y
|
||||
CONFIG_BOARD_LOOPSPERMSEC=5483
|
||||
CONFIG_DISABLE_POLL=y
|
||||
CONFIG_FAT_LCNAMES=y
|
||||
CONFIG_FS_FAT=y
|
||||
CONFIG_MAX_TASKS=16
|
||||
|
|
|
|||
|
|
@ -22,7 +22,6 @@ CONFIG_ARCH_IRQBUTTONS=y
|
|||
CONFIG_ARCH_STACKDUMP=y
|
||||
CONFIG_BOARD_LOOPSPERMSEC=5483
|
||||
CONFIG_BUILTIN=y
|
||||
CONFIG_DISABLE_POLL=y
|
||||
CONFIG_EXAMPLES_NX=y
|
||||
CONFIG_EXAMPLES_NXHELLO=y
|
||||
CONFIG_EXAMPLES_NXHELLO_BPP=16
|
||||
|
|
|
|||
|
|
@ -15,7 +15,6 @@ CONFIG_ARCH_CHIP_STM32F103VC=y
|
|||
CONFIG_ARCH_STACKDUMP=y
|
||||
CONFIG_ARMV7M_TOOLCHAIN_CODESOURCERYL=y
|
||||
CONFIG_BOARD_LOOPSPERMSEC=5483
|
||||
CONFIG_DISABLE_POLL=y
|
||||
CONFIG_LIB_BOARDCTL=y
|
||||
CONFIG_MAX_TASKS=16
|
||||
CONFIG_MAX_WDOGPARMS=2
|
||||
|
|
|
|||
|
|
@ -22,7 +22,6 @@ CONFIG_CDCACM=y
|
|||
CONFIG_CDCACM_CONSOLE=y
|
||||
CONFIG_CDCACM_RXBUFSIZE=256
|
||||
CONFIG_CDCACM_TXBUFSIZE=256
|
||||
CONFIG_DISABLE_POLL=y
|
||||
CONFIG_LIB_BOARDCTL=y
|
||||
CONFIG_MAX_TASKS=16
|
||||
CONFIG_MAX_WDOGPARMS=2
|
||||
|
|
|
|||
|
|
@ -14,7 +14,6 @@ CONFIG_ARCH_STACKDUMP=y
|
|||
CONFIG_ARMV7M_TOOLCHAIN_CODESOURCERYL=y
|
||||
CONFIG_BOARD_LOOPSPERMSEC=5483
|
||||
CONFIG_DISABLE_MOUNTPOINT=y
|
||||
CONFIG_DISABLE_POLL=y
|
||||
CONFIG_EXAMPLES_USBSERIAL=y
|
||||
CONFIG_LIB_BOARDCTL=y
|
||||
CONFIG_MAX_TASKS=16
|
||||
|
|
|
|||
|
|
@ -18,7 +18,6 @@ CONFIG_BOARD_LOOPSPERMSEC=9535
|
|||
CONFIG_DEV_LOWCONSOLE=y
|
||||
CONFIG_DISABLE_ENVIRON=y
|
||||
CONFIG_DISABLE_MOUNTPOINT=y
|
||||
CONFIG_DISABLE_POLL=y
|
||||
CONFIG_INTELHEX_BINARY=y
|
||||
CONFIG_KINETIS_UART5=y
|
||||
CONFIG_MAX_TASKS=16
|
||||
|
|
|
|||
|
|
@ -20,7 +20,6 @@ CONFIG_ARCH_STACKDUMP=y
|
|||
CONFIG_ARMV7M_USEBASEPRI=y
|
||||
CONFIG_BOARD_LOOPSPERMSEC=8192
|
||||
CONFIG_BUILTIN=y
|
||||
CONFIG_DISABLE_POLL=y
|
||||
CONFIG_EXPERIMENTAL=y
|
||||
CONFIG_FS_PROCFS=y
|
||||
CONFIG_INTELHEX_BINARY=y
|
||||
|
|
|
|||
|
|
@ -21,7 +21,6 @@ CONFIG_ARMV7M_LAZYFPU=y
|
|||
CONFIG_ARMV7M_USEBASEPRI=y
|
||||
CONFIG_BOARD_LOOPSPERMSEC=8192
|
||||
CONFIG_BUILTIN=y
|
||||
CONFIG_DISABLE_POLL=y
|
||||
CONFIG_EXPERIMENTAL=y
|
||||
CONFIG_FS_PROCFS=y
|
||||
CONFIG_INTELHEX_BINARY=y
|
||||
|
|
|
|||
|
|
@ -18,7 +18,6 @@ CONFIG_ARCH_LOWVECTORS=y
|
|||
CONFIG_ARCH_STACKDUMP=y
|
||||
CONFIG_ARMV7R_TOOLCHAIN_BUILDROOT=y
|
||||
CONFIG_BUILTIN=y
|
||||
CONFIG_DISABLE_POLL=y
|
||||
CONFIG_FAT_LCNAMES=y
|
||||
CONFIG_FAT_LFN=y
|
||||
CONFIG_FS_FAT=y
|
||||
|
|
|
|||
|
|
@ -18,7 +18,6 @@ CONFIG_DEBUG_FULLOPT=y
|
|||
CONFIG_DEBUG_SYMBOLS=y
|
||||
CONFIG_DISABLE_ENVIRON=y
|
||||
CONFIG_DISABLE_MOUNTPOINT=y
|
||||
CONFIG_DISABLE_POLL=y
|
||||
CONFIG_INTELHEX_BINARY=y
|
||||
CONFIG_LC823450_MTM0_TICK=y
|
||||
CONFIG_LC823450_SPIFI=y
|
||||
|
|
|
|||
|
|
@ -15,7 +15,6 @@ CONFIG_ARCH_CHIP_LPC17XX=y
|
|||
CONFIG_ARCH_STACKDUMP=y
|
||||
CONFIG_ARMV7M_TOOLCHAIN_CODESOURCERYL=y
|
||||
CONFIG_BOARD_LOOPSPERMSEC=7982
|
||||
CONFIG_DISABLE_POLL=y
|
||||
CONFIG_FS_FAT=y
|
||||
CONFIG_LPC17_SSP0=y
|
||||
CONFIG_LPC17_UART0=y
|
||||
|
|
|
|||
|
|
@ -20,7 +20,6 @@ CONFIG_ARMV7M_TOOLCHAIN_BUILDROOT=y
|
|||
CONFIG_BOARD_LOOPSPERMSEC=4531
|
||||
CONFIG_DISABLE_ENVIRON=y
|
||||
CONFIG_DISABLE_MOUNTPOINT=y
|
||||
CONFIG_DISABLE_POLL=y
|
||||
CONFIG_DISABLE_POSIX_TIMERS=y
|
||||
CONFIG_EXAMPLES_NX=y
|
||||
CONFIG_EXAMPLES_NX_BGCOLOR=0x02
|
||||
|
|
|
|||
|
|
@ -19,7 +19,6 @@ CONFIG_ARMV7M_TOOLCHAIN_BUILDROOT=y
|
|||
CONFIG_BOARD_LOOPSPERMSEC=4531
|
||||
CONFIG_DISABLE_ENVIRON=y
|
||||
CONFIG_DISABLE_MOUNTPOINT=y
|
||||
CONFIG_DISABLE_POLL=y
|
||||
CONFIG_DISABLE_POSIX_TIMERS=y
|
||||
CONFIG_EXAMPLES_NX=y
|
||||
CONFIG_EXAMPLES_NX_BGCOLOR=2
|
||||
|
|
|
|||
|
|
@ -19,7 +19,6 @@ CONFIG_ARMV7M_OABI_TOOLCHAIN=y
|
|||
CONFIG_ARMV7M_TOOLCHAIN_BUILDROOT=y
|
||||
CONFIG_BOARD_LOOPSPERMSEC=4531
|
||||
CONFIG_BUILTIN=y
|
||||
CONFIG_DISABLE_POLL=y
|
||||
CONFIG_MAX_TASKS=16
|
||||
CONFIG_MAX_WDOGPARMS=2
|
||||
CONFIG_NFILE_DESCRIPTORS=8
|
||||
|
|
|
|||
|
|
@ -24,7 +24,6 @@ CONFIG_BUILTIN=y
|
|||
CONFIG_DEFAULT_SMALL=y
|
||||
CONFIG_DISABLE_MOUNTPOINT=y
|
||||
CONFIG_DISABLE_MQUEUE=y
|
||||
CONFIG_DISABLE_POLL=y
|
||||
CONFIG_MAX_TASKS=4
|
||||
CONFIG_MAX_WDOGPARMS=2
|
||||
CONFIG_MM_SMALL=y
|
||||
|
|
|
|||
|
|
@ -17,7 +17,6 @@ CONFIG_BOARD_LOOPSPERMSEC=8079
|
|||
CONFIG_DISABLE_ENVIRON=y
|
||||
CONFIG_DISABLE_MOUNTPOINT=y
|
||||
CONFIG_DISABLE_MQUEUE=y
|
||||
CONFIG_DISABLE_POLL=y
|
||||
CONFIG_DISABLE_PTHREAD=y
|
||||
CONFIG_ETH0_PHY_LAN8720=y
|
||||
CONFIG_EXAMPLES_DHCPD=y
|
||||
|
|
|
|||
|
|
@ -19,7 +19,6 @@ CONFIG_ARMV7M_TOOLCHAIN_CODEREDL=y
|
|||
CONFIG_BOARD_LOOPSPERMSEC=8079
|
||||
CONFIG_DISABLE_ENVIRON=y
|
||||
CONFIG_DISABLE_MOUNTPOINT=y
|
||||
CONFIG_DISABLE_POLL=y
|
||||
CONFIG_DISABLE_POSIX_TIMERS=y
|
||||
CONFIG_EXAMPLES_NX=y
|
||||
CONFIG_EXAMPLES_NX_BGCOLOR=0
|
||||
|
|
|
|||
|
|
@ -15,7 +15,6 @@ CONFIG_ARCH_CHIP_LPC17XX=y
|
|||
CONFIG_ARCH_STACKDUMP=y
|
||||
CONFIG_ARMV7M_TOOLCHAIN_CODEREDL=y
|
||||
CONFIG_BOARD_LOOPSPERMSEC=8079
|
||||
CONFIG_DISABLE_POLL=y
|
||||
CONFIG_INTELHEX_BINARY=y
|
||||
CONFIG_LIB_BOARDCTL=y
|
||||
CONFIG_LPC17_SSP1=y
|
||||
|
|
|
|||
|
|
@ -30,7 +30,6 @@ CONFIG_ARCH_STACKDUMP=y
|
|||
CONFIG_BOARD_LOOPSPERMSEC=5483
|
||||
CONFIG_BUILTIN=y
|
||||
CONFIG_DEFAULT_SMALL=y
|
||||
CONFIG_DISABLE_POLL=y
|
||||
CONFIG_LIB_RAND_ORDER=2
|
||||
CONFIG_MAX_TASKS=16
|
||||
CONFIG_MAX_WDOGPARMS=2
|
||||
|
|
|
|||
|
|
@ -36,7 +36,6 @@ CONFIG_CDCACM_CONSOLE=y
|
|||
CONFIG_CDCACM_RXBUFSIZE=256
|
||||
CONFIG_CDCACM_TXBUFSIZE=256
|
||||
CONFIG_DEFAULT_SMALL=y
|
||||
CONFIG_DISABLE_POLL=y
|
||||
CONFIG_EXAMPLES_NX=y
|
||||
CONFIG_EXAMPLES_NXHELLO=y
|
||||
CONFIG_EXAMPLES_NXHELLO_BPP=1
|
||||
|
|
|
|||
|
|
@ -35,7 +35,6 @@ CONFIG_CDCACM_CONSOLE=y
|
|||
CONFIG_CDCACM_RXBUFSIZE=256
|
||||
CONFIG_CDCACM_TXBUFSIZE=256
|
||||
CONFIG_DEFAULT_SMALL=y
|
||||
CONFIG_DISABLE_POLL=y
|
||||
CONFIG_I2C=y
|
||||
CONFIG_LIB_BOARDCTL=y
|
||||
CONFIG_LIB_RAND_ORDER=2
|
||||
|
|
|
|||
|
|
@ -19,7 +19,6 @@ CONFIG_ARMV7M_LAZYFPU=y
|
|||
CONFIG_ARMV7M_USEBASEPRI=y
|
||||
CONFIG_BOARD_LOOPSPERMSEC=8192
|
||||
CONFIG_BUILTIN=y
|
||||
CONFIG_DISABLE_POLL=y
|
||||
CONFIG_FS_PROCFS=y
|
||||
CONFIG_INTELHEX_BINARY=y
|
||||
CONFIG_MAX326XX_UART1=y
|
||||
|
|
|
|||
|
|
@ -21,7 +21,6 @@ CONFIG_ARCH_CHIP_LPC17XX=y
|
|||
CONFIG_ARCH_STACKDUMP=y
|
||||
CONFIG_ARMV7M_TOOLCHAIN_BUILDROOT=y
|
||||
CONFIG_BOARD_LOOPSPERMSEC=7982
|
||||
CONFIG_DISABLE_POLL=y
|
||||
CONFIG_FS_FAT=y
|
||||
CONFIG_LPC17_SSP0=y
|
||||
CONFIG_LPC17_UART0=y
|
||||
|
|
|
|||
|
|
@ -21,7 +21,6 @@ CONFIG_ARCH_CHIP_LPC17XX=y
|
|||
CONFIG_ARCH_STACKDUMP=y
|
||||
CONFIG_ARMV7M_TOOLCHAIN_BUILDROOT=y
|
||||
CONFIG_BOARD_LOOPSPERMSEC=7982
|
||||
CONFIG_DISABLE_POLL=y
|
||||
CONFIG_FS_FAT=y
|
||||
CONFIG_LPC17_SSP0=y
|
||||
CONFIG_LPC17_UART0=y
|
||||
|
|
|
|||
|
|
@ -27,7 +27,6 @@ CONFIG_COMPOSITE_PRODUCTSTR="Composite Device"
|
|||
CONFIG_COMPOSITE_SERIALSTR="12345"
|
||||
CONFIG_COMPOSITE_VENDORID=0x03eb
|
||||
CONFIG_COMPOSITE_VERSIONNO=0x0101
|
||||
CONFIG_DISABLE_POLL=y
|
||||
CONFIG_IDLETHREAD_STACKSIZE=2048
|
||||
CONFIG_INTELHEX_BINARY=y
|
||||
CONFIG_LIB_BOARDCTL=y
|
||||
|
|
|
|||
|
|
@ -16,7 +16,6 @@ CONFIG_ARCH_CHIP_LPC214X=y
|
|||
CONFIG_ARCH_STACKDUMP=y
|
||||
CONFIG_ARM_TOOLCHAIN_BUILDROOT=y
|
||||
CONFIG_BOARD_LOOPSPERMSEC=3270
|
||||
CONFIG_DISABLE_POLL=y
|
||||
CONFIG_FAT_LCNAMES=y
|
||||
CONFIG_FAT_LFN=y
|
||||
CONFIG_FS_FAT=y
|
||||
|
|
|
|||
|
|
@ -16,7 +16,6 @@ CONFIG_ARCH_INTERRUPTSTACK=1024
|
|||
CONFIG_ARCH_STACKDUMP=y
|
||||
CONFIG_ARM_TOOLCHAIN_BUILDROOT=y
|
||||
CONFIG_BOARD_LOOPSPERMSEC=3270
|
||||
CONFIG_DISABLE_POLL=y
|
||||
CONFIG_IDLETHREAD_STACKSIZE=2048
|
||||
CONFIG_LIB_BOARDCTL=y
|
||||
CONFIG_MAX_TASKS=16
|
||||
|
|
|
|||
|
|
@ -15,7 +15,6 @@ CONFIG_ARCH_STACKDUMP=y
|
|||
CONFIG_ARM_TOOLCHAIN_BUILDROOT=y
|
||||
CONFIG_BOARD_LOOPSPERMSEC=3270
|
||||
CONFIG_DISABLE_MOUNTPOINT=y
|
||||
CONFIG_DISABLE_POLL=y
|
||||
CONFIG_EXAMPLES_USBSERIAL=y
|
||||
CONFIG_IDLETHREAD_STACKSIZE=2048
|
||||
CONFIG_LIB_BOARDCTL=y
|
||||
|
|
|
|||
|
|
@ -16,7 +16,6 @@ CONFIG_ARCH_STACKDUMP=y
|
|||
CONFIG_BOARD_LOOPSPERMSEC=7225
|
||||
CONFIG_BUILTIN=y
|
||||
CONFIG_DISABLE_ENVIRON=y
|
||||
CONFIG_DISABLE_POLL=y
|
||||
CONFIG_HAVE_CXX=y
|
||||
CONFIG_HAVE_CXXINITIALIZE=y
|
||||
CONFIG_MAX_TASKS=16
|
||||
|
|
|
|||
|
|
@ -19,7 +19,6 @@ CONFIG_DEFAULT_SMALL=y
|
|||
CONFIG_DEV_LOWCONSOLE=y
|
||||
CONFIG_DISABLE_MOUNTPOINT=y
|
||||
CONFIG_DISABLE_MQUEUE=y
|
||||
CONFIG_DISABLE_POLL=y
|
||||
CONFIG_DISABLE_PTHREAD=y
|
||||
CONFIG_EXAMPLES_HELLO=y
|
||||
CONFIG_HOST_WINDOWS=y
|
||||
|
|
|
|||
|
|
@ -34,7 +34,6 @@ CONFIG_CDCACM_TXBUFSIZE=256
|
|||
CONFIG_DEBUG_SYMBOLS=y
|
||||
CONFIG_DEV_LOOP=y
|
||||
CONFIG_DEV_ZERO=y
|
||||
CONFIG_DISABLE_POLL=y
|
||||
CONFIG_DRIVERS_AUDIO=y
|
||||
CONFIG_EXAMPLES_NX=y
|
||||
CONFIG_EXAMPLES_NX_BPP=16
|
||||
|
|
|
|||
|
|
@ -27,7 +27,6 @@ CONFIG_CDCACM_TXBUFSIZE=256
|
|||
CONFIG_DEBUG_SYMBOLS=y
|
||||
CONFIG_DEV_LOOP=y
|
||||
CONFIG_DEV_ZERO=y
|
||||
CONFIG_DISABLE_POLL=y
|
||||
CONFIG_FS_FAT=y
|
||||
CONFIG_FS_ROMFS=y
|
||||
CONFIG_HAVE_CXX=y
|
||||
|
|
|
|||
|
|
@ -22,7 +22,6 @@ CONFIG_BOARD_LOOPSPERMSEC=16717
|
|||
CONFIG_BUILTIN=y
|
||||
CONFIG_DEV_LOOP=y
|
||||
CONFIG_DEV_ZERO=y
|
||||
CONFIG_DISABLE_POLL=y
|
||||
CONFIG_FS_FAT=y
|
||||
CONFIG_FS_ROMFS=y
|
||||
CONFIG_HAVE_CXX=y
|
||||
|
|
|
|||
|
|
@ -23,7 +23,6 @@ CONFIG_ARCH_CHIP_STM32F407VG=y
|
|||
CONFIG_ARCH_STACKDUMP=y
|
||||
CONFIG_BOARD_LOOPSPERMSEC=16717
|
||||
CONFIG_BUILTIN=y
|
||||
CONFIG_DISABLE_POLL=y
|
||||
CONFIG_EXAMPLES_NX=y
|
||||
CONFIG_EXAMPLES_NX_BPP=16
|
||||
CONFIG_HAVE_CXX=y
|
||||
|
|
|
|||
|
|
@ -25,7 +25,6 @@ CONFIG_ARCH_CHIP_STM32F407VG=y
|
|||
CONFIG_ARCH_STACKDUMP=y
|
||||
CONFIG_BOARD_LOOPSPERMSEC=16717
|
||||
CONFIG_BUILTIN=y
|
||||
CONFIG_DISABLE_POLL=y
|
||||
CONFIG_EXAMPLES_NXLINES=y
|
||||
CONFIG_EXAMPLES_NXLINES_BGCOLOR=0x0
|
||||
CONFIG_EXAMPLES_NXLINES_BORDERCOLOR=0xFFE0
|
||||
|
|
|
|||
|
|
@ -24,7 +24,6 @@ CONFIG_ARCH_STACKDUMP=y
|
|||
CONFIG_BOARD_LOOPSPERMSEC=16717
|
||||
CONFIG_BUILTIN=y
|
||||
CONFIG_DEBUG_SYMBOLS=y
|
||||
CONFIG_DISABLE_POLL=y
|
||||
CONFIG_EXAMPLES_NXTEXT=y
|
||||
CONFIG_EXAMPLES_NXTEXT_BPP=16
|
||||
CONFIG_HAVE_CXX=y
|
||||
|
|
|
|||
|
|
@ -231,9 +231,7 @@ struct tc_dev_s
|
|||
* retained in the f_priv field of the 'struct file'.
|
||||
*/
|
||||
|
||||
#ifndef CONFIG_DISABLE_POLL
|
||||
struct pollfd *fds[CONFIG_TOUCHSCREEN_NPOLLWAITERS];
|
||||
#endif
|
||||
};
|
||||
|
||||
/************************************************************************************
|
||||
|
|
@ -260,9 +258,7 @@ static int tc_open(FAR struct file *filep);
|
|||
static int tc_close(FAR struct file *filep);
|
||||
static ssize_t tc_read(FAR struct file *filep, FAR char *buffer, size_t len);
|
||||
static int tc_ioctl(FAR struct file *filep, int cmd, unsigned long arg);
|
||||
#ifndef CONFIG_DISABLE_POLL
|
||||
static int tc_poll(FAR struct file *filep, struct pollfd *fds, bool setup);
|
||||
#endif
|
||||
|
||||
/****************************************************************************
|
||||
* Private Data
|
||||
|
|
@ -277,10 +273,8 @@ static const struct file_operations tc_fops =
|
|||
tc_read, /* read */
|
||||
0, /* write */
|
||||
0, /* seek */
|
||||
tc_ioctl /* ioctl */
|
||||
#ifndef CONFIG_DISABLE_POLL
|
||||
, tc_poll /* poll */
|
||||
#endif
|
||||
tc_ioctl, /* ioctl */
|
||||
tc_poll /* poll */
|
||||
};
|
||||
|
||||
/* If only a single touchscreen device is supported, then the driver state
|
||||
|
|
@ -581,9 +575,7 @@ static inline bool tc_valid_sample(uint16_t sample)
|
|||
|
||||
static void tc_notify(FAR struct tc_dev_s *priv)
|
||||
{
|
||||
#ifndef CONFIG_DISABLE_POLL
|
||||
int i;
|
||||
#endif
|
||||
|
||||
/* If no threads have the driver open, then just dump the state */
|
||||
|
||||
|
|
@ -616,7 +608,6 @@ static void tc_notify(FAR struct tc_dev_s *priv)
|
|||
* then some make end up blocking after all.
|
||||
*/
|
||||
|
||||
#ifndef CONFIG_DISABLE_POLL
|
||||
for (i = 0; i < CONFIG_TOUCHSCREEN_NPOLLWAITERS; i++)
|
||||
{
|
||||
struct pollfd *fds = priv->fds[i];
|
||||
|
|
@ -627,7 +618,6 @@ static void tc_notify(FAR struct tc_dev_s *priv)
|
|||
nxsem_post(fds->sem);
|
||||
}
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
/****************************************************************************
|
||||
|
|
@ -1379,7 +1369,6 @@ static int tc_ioctl(FAR struct file *filep, int cmd, unsigned long arg)
|
|||
* Name: tc_poll
|
||||
****************************************************************************/
|
||||
|
||||
#ifndef CONFIG_DISABLE_POLL
|
||||
static int tc_poll(FAR struct file *filep, FAR struct pollfd *fds,
|
||||
bool setup)
|
||||
{
|
||||
|
|
@ -1467,7 +1456,6 @@ errout:
|
|||
nxsem_post(&priv->devsem);
|
||||
return ret;
|
||||
}
|
||||
#endif
|
||||
|
||||
/************************************************************************************
|
||||
* Public Functions
|
||||
|
|
|
|||
|
|
@ -26,7 +26,6 @@ CONFIG_CDCACM_RXBUFSIZE=256
|
|||
CONFIG_CDCACM_TXBUFSIZE=256
|
||||
CONFIG_DEV_LOOP=y
|
||||
CONFIG_DEV_ZERO=y
|
||||
CONFIG_DISABLE_POLL=y
|
||||
CONFIG_FS_FAT=y
|
||||
CONFIG_FS_ROMFS=y
|
||||
CONFIG_HAVE_CXX=y
|
||||
|
|
|
|||
|
|
@ -22,7 +22,6 @@ CONFIG_ARCH_STACKDUMP=y
|
|||
CONFIG_BOARD_LOOPSPERMSEC=8079
|
||||
CONFIG_DEFAULT_SMALL=y
|
||||
CONFIG_DISABLE_MOUNTPOINT=y
|
||||
CONFIG_DISABLE_POLL=y
|
||||
CONFIG_HOST_WINDOWS=y
|
||||
CONFIG_IDLETHREAD_STACKSIZE=2048
|
||||
CONFIG_INTELHEX_BINARY=y
|
||||
|
|
|
|||
|
|
@ -22,7 +22,6 @@ CONFIG_ARCH_STACKDUMP=y
|
|||
CONFIG_BOARD_LOOPSPERMSEC=8079
|
||||
CONFIG_DEFAULT_SMALL=y
|
||||
CONFIG_DISABLE_MQUEUE=y
|
||||
CONFIG_DISABLE_POLL=y
|
||||
CONFIG_DISABLE_PTHREAD=y
|
||||
CONFIG_FS_NXFFS=y
|
||||
CONFIG_HOST_WINDOWS=y
|
||||
|
|
|
|||
|
|
@ -45,7 +45,6 @@ CONFIG_DEBUG_WARN=y
|
|||
CONFIG_DISABLE_ENVIRON=y
|
||||
CONFIG_DISABLE_MOUNTPOINT=y
|
||||
CONFIG_DISABLE_MQUEUE=y
|
||||
CONFIG_DISABLE_POLL=y
|
||||
CONFIG_DISABLE_POSIX_TIMERS=y
|
||||
CONFIG_DISABLE_PSEUDOFS_OPERATIONS=y
|
||||
CONFIG_DISABLE_PTHREAD=y
|
||||
|
|
|
|||
|
|
@ -18,7 +18,6 @@ CONFIG_DEFAULT_SMALL=y
|
|||
CONFIG_DEV_LOWCONSOLE=y
|
||||
CONFIG_DISABLE_MOUNTPOINT=y
|
||||
CONFIG_DISABLE_MQUEUE=y
|
||||
CONFIG_DISABLE_POLL=y
|
||||
CONFIG_DISABLE_PTHREAD=y
|
||||
CONFIG_EXAMPLES_HELLO=y
|
||||
CONFIG_HOST_MACOS=y
|
||||
|
|
|
|||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Reference in a new issue