Print this page
3882 remove xmod & friends

*** 23,33 **** * Use is subject to license terms. */ #pragma ident "%Z%%M% %I% %E% SMI" - /* EXPORT DELETE START */ #include <sys/types.h> #include <sys/param.h> #include <sys/salib.h> #include <sys/promif.h> #include <sys/wanboot_impl.h> --- 23,32 ----
*** 47,62 **** #include <des3.h> #include <hmac_sha1.h> #include <netdb.h> #include <wanboot_conf.h> #include <bootinfo.h> - /* EXPORT DELETE END */ #include "wbcli.h" - /* EXPORT DELETE START */ - #define skipspace(p) while (isspace(*(p))) ++p #define skiptext(p) while (*(p) != '\0' && !isspace(*(p)) && \ *(p) != '=' && *(p) != ',') ++p --- 46,58 ----
*** 1303,1317 **** if (bootinfo_get(BI_HOSTNAME, str, &len, NULL) == BI_E_SUCCESS) { (void) sethostname(str, len); } } - /* EXPORT DELETE END */ boolean_t wanboot_init_interface(char *boot_arguments) { - /* EXPORT DELETE START */ boolean_t interactive; int which; #if defined(__sparcv9) /* --- 1299,1311 ----
*** 1403,1427 **** * the interface now; if "dhcp" then it will already have * been setup. */ if (strcmp(net_config_strategy(), "manual") == 0) setup_interface(); - /* EXPORT DELETE END */ return (B_TRUE); } boolean_t wanboot_verify_config(void) { - /* EXPORT DELETE START */ /* * Check that the wanboot.conf file defines a valid root_server * URL, and check that, if given, the boot_logger URL is valid. */ if (config_incomplete(0, B_FALSE)) { bootlog("wanboot", BOOTLOG_CRIT, "incomplete boot configuration"); return (B_FALSE); } - /* EXPORT DELETE END */ return (B_TRUE); } --- 1397,1418 ----