cbtable.c 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. /*
  2. * GRUB -- GRand Unified Bootloader
  3. * Copyright (C) 2007,2008,2013 Free Software Foundation, Inc.
  4. *
  5. * GRUB is free software: you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License as published by
  7. * the Free Software Foundation, either version 3 of the License, or
  8. * (at your option) any later version.
  9. *
  10. * GRUB is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License
  16. * along with GRUB. If not, see <http://www.gnu.org/licenses/>.
  17. */
  18. #include <grub/coreboot/lbio.h>
  19. #include <grub/types.h>
  20. #include <grub/err.h>
  21. #include <grub/misc.h>
  22. #include <grub/dl.h>
  23. #include <grub/arm/startup.h>
  24. GRUB_MOD_LICENSE ("GPLv3+");
  25. #pragma GCC diagnostic ignored "-Wcast-align"
  26. grub_linuxbios_table_header_t
  27. grub_linuxbios_get_tables (void)
  28. {
  29. grub_linuxbios_table_header_t table_header
  30. = (grub_linuxbios_table_header_t) grub_arm_saved_registers.r[0];
  31. if (!grub_linuxbios_check_signature (table_header))
  32. return 0;
  33. return table_header;
  34. }