| 123456789101112131415161718192021222324252627282930313233 |
- /*
- * Copyright (c) 2006-2021, RT-Thread Development Team
- *
- * SPDX-License-Identifier: Apache-2.0
- *
- * Change Logs:
- * Date Author Notes
- * 2021-11-11 GuEe-GUI the first version
- */
- #include <rtthread.h>
- #include <virtio_console.h>
- static int console_init()
- {
- rt_err_t status = RT_EOK;
- rt_device_t device = rt_device_find("virtio-console0");
- if (device != RT_NULL && rt_device_open(device, 0) == RT_EOK)
- {
- /* Create vport0p1 */
- status = rt_device_control(device, VIRTIO_DEVICE_CTRL_CONSOLE_PORT_CREATE, RT_NULL);
- }
- if (device != RT_NULL)
- {
- rt_device_close(device);
- }
- return status;
- }
- INIT_ENV_EXPORT(console_init);
|