restore lost packages from 0.2.3 + fix overwritten 0.2.4 files
- 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
This commit is contained in:
@@ -0,0 +1,63 @@
|
||||
/*
|
||||
* Freescale hypervisor ioctl and kernel interface
|
||||
*
|
||||
* Copyright (C) 2008-2011 Freescale Semiconductor, Inc.
|
||||
* Author: Timur Tabi <timur@freescale.com>
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
* modification, are permitted provided that the following conditions are met:
|
||||
* * Redistributions of source code must retain the above copyright
|
||||
* notice, this list of conditions and the following disclaimer.
|
||||
* * Redistributions in binary form must reproduce the above copyright
|
||||
* notice, this list of conditions and the following disclaimer in the
|
||||
* documentation and/or other materials provided with the distribution.
|
||||
* * Neither the name of Freescale Semiconductor nor the
|
||||
* names of its contributors may be used to endorse or promote products
|
||||
* derived from this software without specific prior written permission.
|
||||
*
|
||||
*
|
||||
* ALTERNATIVELY, this software may be distributed under the terms of the
|
||||
* GNU General Public License ("GPL") as published by the Free Software
|
||||
* Foundation, either version 2 of that License or (at your option) any
|
||||
* later version.
|
||||
*
|
||||
* This software is provided by Freescale Semiconductor "as is" and any
|
||||
* express or implied warranties, including, but not limited to, the implied
|
||||
* warranties of merchantability and fitness for a particular purpose are
|
||||
* disclaimed. In no event shall Freescale Semiconductor be liable for any
|
||||
* direct, indirect, incidental, special, exemplary, or consequential damages
|
||||
* (including, but not limited to, procurement of substitute goods or services;
|
||||
* loss of use, data, or profits; or business interruption) however caused and
|
||||
* on any theory of liability, whether in contract, strict liability, or tort
|
||||
* (including negligence or otherwise) arising in any way out of the use of this
|
||||
* software, even if advised of the possibility of such damage.
|
||||
*
|
||||
* This file is used by the Freescale hypervisor management driver. It can
|
||||
* also be included by applications that need to communicate with the driver
|
||||
* via the ioctl interface.
|
||||
*/
|
||||
#ifndef FSL_HYPERVISOR_H
|
||||
#define FSL_HYPERVISOR_H
|
||||
|
||||
#include <uapi/linux/fsl_hypervisor.h>
|
||||
|
||||
|
||||
/**
|
||||
* fsl_hv_event_register() - register a callback for failover events
|
||||
* @nb: pointer to caller-supplied notifier_block structure
|
||||
*
|
||||
* This function is called by device drivers to register their callback
|
||||
* functions for fail-over events.
|
||||
*
|
||||
* The caller should allocate a notifier_block object and initialize the
|
||||
* 'priority' and 'notifier_call' fields.
|
||||
*/
|
||||
int fsl_hv_failover_register(struct notifier_block *nb);
|
||||
|
||||
/**
|
||||
* fsl_hv_event_unregister() - unregister a callback for failover events
|
||||
* @nb: the same 'nb' used in previous fsl_hv_failover_register call
|
||||
*/
|
||||
int fsl_hv_failover_unregister(struct notifier_block *nb);
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user