This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ## ipxe | |
| git clone http://git.ipxe.org/ipxe.git | |
| cd src | |
| make bin/undionly.kpxe | |
| cp bin/undionly.kpxe /tftpboot | |
| ## wimboot | |
| git clone http://git.ipxe.org/wimboot.git | |
| cd wimboot | |
| cp -p wimboot /tftpboot |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # DHCP Server Configuration file. | |
| # see /usr/share/doc/dhcp*/dhcpd.conf.sample | |
| # | |
| ### iPXE-specific options | |
| # | |
| # http://www.ipxe.org/howto/dhcpd | |
| # | |
| option space ipxe; | |
| option ipxe-encap-opts code 175 = encapsulate ipxe; | |
| option ipxe.priority code 1 = signed integer 8; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @echo off | |
| for /F "skip=1 delims=" %%j in ('wmic bios get serialnumber') do ( | |
| set SERIAL=%%j | |
| goto :DONE | |
| ) | |
| :DONE | |
| echo %SERIAL% |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --- rcube_charset.php.org 2013-09-06 21:20:49.000000000 +0900 | |
| +++ rcube_charset.php 2013-12-13 11:27:54.000000000 +0900 | |
| @@ -177,6 +177,7 @@ | |
| static $mbstring_sch = null; | |
| static $conv = null; | |
| + if(strcasecmp('iso-2022-jp', $from)===0) $from = 'ISO-2022-JP-MS'; | |
| $to = empty($to) ? RCUBE_CHARSET : $to; | |
| $from = self::parse_charset($from); |
OlderNewer