http://blog.chinaunix.net/uid/16979052.html
全部博文(286)
发布时间:2012-06-27 16:00:07
echo "1" > /proc/sys/net/ipv4/ip_forwardiptables -A POSTROUTING -t nat -o ppp0 -j MASQUERADEiptables -A POSTROUTING -t nat -o ppp1 -j MASQUERADEip route replace default scope global nexthop dev ppp0 nexthop dev ppp1ip route flush cache......【阅读全文】
发布时间:2012-06-27 10:48:23
#include #include /*Check if the bit BIT in FLAGS is set.*/#define CHECK_FLAG(flags,bit) ((flags) & (1 << (bit)))struct MultibootInfo bootInfo;extern void early_serial_init();void setup_param(uint8_t *addr, int magic){ early_serial_init(); struct Multiboot.........【阅读全文】
发布时间:2012-06-27 10:45:51
#include .global multiboot_entry.section .boot/*Multiboot header, 32-bit aligned.*/.align 4 .long (MULTIBOOT_HEADER_MAGIC) .long (MULTIBOOT_HEADER_FLAGS) .long -(MULTIBOOT_HEADER_MAGIC + MULTIBOOT_HEADER_FLAGS).align 4multiboot_entry: mov $boot_sta.........【阅读全文】