dc68054305
- Restore 29 recipe symlinks (libdrm, qtbase, dbus, sddm, pipewire, etc.) - Restore 33 patches (KDE, libdrm, mesa, pipewire, sddm, wireplumber) - Restore 20+ local/scripts (audit, lint, test, build helpers) - Restore src/cook/scheduler.rs, status.rs, gnu-config/ - Restore scripts/patch-inclusion-gate.sh, run_mini1.sh, validate-collision-log.sh - Recover TLC source from HEAD (was overwritten by 0.2.3 checkout) - Recover 11 local/docs plans from HEAD (were overwritten) - Recover qt6-wayland-smoke symlink from HEAD - Fix MOTD: remove garbled ASCII art, use clean text - Update version: 0.2.0 -> 0.2.4 in os-release, motd, config - Reduce filesystem_size: 1536 -> 512 MiB - Add ABSOLUTE RULE to AGENTS.md: never delete/ignore packages - Reduce pcid scheme log verbosity: info -> debug
56 lines
2.3 KiB
C
56 lines
2.3 KiB
C
#ifndef _LINUX_FBCON_H
|
|
#define _LINUX_FBCON_H
|
|
|
|
#include <linux/compiler_types.h>
|
|
|
|
struct fb_blit_caps;
|
|
struct fb_info;
|
|
struct fb_var_screeninfo;
|
|
struct fb_videomode;
|
|
|
|
#ifdef CONFIG_FRAMEBUFFER_CONSOLE
|
|
void __init fb_console_init(void);
|
|
void __exit fb_console_exit(void);
|
|
int fbcon_fb_registered(struct fb_info *info);
|
|
void fbcon_fb_unregistered(struct fb_info *info);
|
|
void fbcon_fb_unbind(struct fb_info *info);
|
|
void fbcon_suspended(struct fb_info *info);
|
|
void fbcon_resumed(struct fb_info *info);
|
|
int fbcon_mode_deleted(struct fb_info *info,
|
|
struct fb_videomode *mode);
|
|
void fbcon_delete_modelist(struct list_head *head);
|
|
void fbcon_new_modelist(struct fb_info *info);
|
|
void fbcon_get_requirement(struct fb_info *info,
|
|
struct fb_blit_caps *caps);
|
|
void fbcon_fb_blanked(struct fb_info *info, int blank);
|
|
int fbcon_modechange_possible(struct fb_info *info,
|
|
struct fb_var_screeninfo *var);
|
|
void fbcon_update_vcs(struct fb_info *info, bool all);
|
|
void fbcon_remap_all(struct fb_info *info);
|
|
int fbcon_set_con2fb_map_ioctl(void __user *argp);
|
|
int fbcon_get_con2fb_map_ioctl(void __user *argp);
|
|
#else
|
|
static inline void fb_console_init(void) {}
|
|
static inline void fb_console_exit(void) {}
|
|
static inline int fbcon_fb_registered(struct fb_info *info) { return 0; }
|
|
static inline void fbcon_fb_unregistered(struct fb_info *info) {}
|
|
static inline void fbcon_fb_unbind(struct fb_info *info) {}
|
|
static inline void fbcon_suspended(struct fb_info *info) {}
|
|
static inline void fbcon_resumed(struct fb_info *info) {}
|
|
static inline int fbcon_mode_deleted(struct fb_info *info,
|
|
struct fb_videomode *mode) { return 0; }
|
|
static inline void fbcon_delete_modelist(struct list_head *head) {}
|
|
static inline void fbcon_new_modelist(struct fb_info *info) {}
|
|
static inline void fbcon_get_requirement(struct fb_info *info,
|
|
struct fb_blit_caps *caps) {}
|
|
static inline void fbcon_fb_blanked(struct fb_info *info, int blank) {}
|
|
static inline int fbcon_modechange_possible(struct fb_info *info,
|
|
struct fb_var_screeninfo *var) { return 0; }
|
|
static inline void fbcon_update_vcs(struct fb_info *info, bool all) {}
|
|
static inline void fbcon_remap_all(struct fb_info *info) {}
|
|
static inline int fbcon_set_con2fb_map_ioctl(void __user *argp) { return 0; }
|
|
static inline int fbcon_get_con2fb_map_ioctl(void __user *argp) { return 0; }
|
|
#endif
|
|
|
|
#endif /* _LINUX_FBCON_H */
|