123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- /*++
- Copyright (c) 2015 Minoca Corp.
- This file is licensed under the terms of the GNU General Public License
- version 3. Alternative licensing terms are available. Contact
- info@minocacorp.com for details. See the LICENSE file at the root of this
- project for complete licensing information.
- Module Name:
- SD DesignWare
- Abstract:
- This library contains the DesignWare Secure Digital (card) controller
- device.
- Author:
- Chris Stevens 16-Jul-2015
- Environment:
- Firmware
- --*/
- from menv import kernelLibrary;
- function build() {
- var entries;
- var includes;
- var lib;
- var sources;
- var sourcesConfig;
- sources = [
- "sddwc.c"
- ];
- includes = [
- "$S/uefi/include"
- ];
- sourcesConfig = {
- "CFLAGS": ["-fshort-wchar"],
- };
- lib = {
- "label": "sddwc",
- "inputs": sources,
- "sources_config": sourcesConfig,
- "includes": includes
- };
- entries = kernelLibrary(lib);
- return entries;
- }
|