14b6da826SThomas Huth /* 24b6da826SThomas Huth * This code is free software; you can redistribute it and/or modify it 34b6da826SThomas Huth * under the terms of the GNU Library General Public License version 2. 44b6da826SThomas Huth */ 56b97d595SAndrew Jones #ifndef _AUXINFO_H_ 66b97d595SAndrew Jones #define _AUXINFO_H_ 762bdc67fSAndrew Jones 862bdc67fSAndrew Jones #define AUXINFO_MMU_OFF (1 << 0) 962bdc67fSAndrew Jones 10*0cc3a351SSean Christopherson #ifndef __ASSEMBLER__ 116b97d595SAndrew Jones struct auxinfo { 12809ebcb3SAndrew Jones const char *progname; 1305892d66SAndrew Jones unsigned long flags; 146b97d595SAndrew Jones }; 156b97d595SAndrew Jones 16ac9e0759SThomas Huth extern struct auxinfo auxinfo; 176b97d595SAndrew Jones #endif 1862bdc67fSAndrew Jones #endif 19