[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
[or-cvs] r12229: Updated readme.html to mention the MAC changer option in the (in incognito/trunk: . portage.config root_overlay/usr/share/incognito root_overlay/var/patches)
Author: anonym
Date: 2007-10-27 10:52:14 -0400 (Sat, 27 Oct 2007)
New Revision: 12229
Removed:
incognito/trunk/root_overlay/var/patches/autoconfig.patch
Modified:
incognito/trunk/AUTHORS
incognito/trunk/TODO
incognito/trunk/portage.config/package.keywords
incognito/trunk/root_overlay/usr/share/incognito/readme.html
Log:
Updated readme.html to mention the MAC changer option in the boot menu
Removed autoconfig patch and keyworded fixed livecd-tools instead
Modified: incognito/trunk/AUTHORS
===================================================================
--- incognito/trunk/AUTHORS 2007-10-27 14:37:31 UTC (rev 12228)
+++ incognito/trunk/AUTHORS 2007-10-27 14:52:14 UTC (rev 12229)
@@ -1,7 +1,7 @@
Pat Double <pat@xxxxxxxxxxxxx>
Main author
- Finger print: C31F D009 E379 DF75 BC7F 5378 EC06 3529 C54B AD26
+ Finger print: C31F D009 E379 DF75 BC7F 5378 EC06 3529 C54B AD26
anonym <anonym@xxxxxxxxxxx>
Contributor
Modified: incognito/trunk/TODO
===================================================================
--- incognito/trunk/TODO 2007-10-27 14:37:31 UTC (rev 12228)
+++ incognito/trunk/TODO 2007-10-27 14:52:14 UTC (rev 12229)
@@ -59,8 +59,6 @@
Sometimes a direct connection to the Internet is desired. We need a way to bypass the iptables filter. Possibly another proxy process that does not go through Tor. There should be a clear indicator that we are not anonymous.
(see entry for torbutton for a possible solution)
-- Upgrade to livecd-tools 1.0.36 and remove unpack_firmware patch
-
- Move to kernel 2.6.22
Note that as of 2007-08-24 some of the wireless NIC drivers will not compile with 2.6.22.
Modified: incognito/trunk/portage.config/package.keywords
===================================================================
--- incognito/trunk/portage.config/package.keywords 2007-10-27 14:37:31 UTC (rev 12228)
+++ incognito/trunk/portage.config/package.keywords 2007-10-27 14:52:14 UTC (rev 12229)
@@ -54,6 +54,7 @@
x11-plugins/pidgin-otr ~*
dev-util/subversion ~*
sys-boot/syslinux ~*
+=app-misc/livecd-tools-1.0.36 ~*
# NetworkManager
net-misc/networkmanager ~*
Modified: incognito/trunk/root_overlay/usr/share/incognito/readme.html
===================================================================
--- incognito/trunk/root_overlay/usr/share/incognito/readme.html 2007-10-27 14:37:31 UTC (rev 12228)
+++ incognito/trunk/root_overlay/usr/share/incognito/readme.html 2007-10-27 14:52:14 UTC (rev 12229)
@@ -360,7 +360,7 @@
</p>
</p>
-This functionality is not enabled by default as some DHCP servers may be configured with specific MAC addresses. In the boot menu type "tab" to get the kernel command line and add " macchanger" (notice the preceeding space). Press ENTER to continue booting.
+This functionality is not enabled by default as some DHCP servers may be configured with specific MAC addresses. In the boot menu there is an "Enable/Disable MAC changer" option that can be set before a language is chosen and the system starts booting.
</p>
<ul>
Deleted: incognito/trunk/root_overlay/var/patches/autoconfig.patch
===================================================================
--- incognito/trunk/root_overlay/var/patches/autoconfig.patch 2007-10-27 14:37:31 UTC (rev 12228)
+++ incognito/trunk/root_overlay/var/patches/autoconfig.patch 2007-10-27 14:52:14 UTC (rev 12229)
@@ -1,61 +0,0 @@
---- etc/init.d/autoconfig.orig 2007-09-03 12:26:08.142773163 +0200
-+++ etc/init.d/autoconfig 2007-09-03 12:33:19.946898737 +0200
-@@ -223,6 +223,29 @@
- start() {
- echo "0" > /proc/sys/kernel/printk
- get_config
-+
-+ # First off, we want hotplug/coldplug enabled, so let's re-enable it.
-+ # We do this even if we aren't startup up the hotplug/coldplug
-+ # services for the installer.
-+ sed -i 's/RC_COLDPLUG="no"/RC_COLDPLUG="yes"/' /etc/conf.d/rc
-+ # Now, we check if we're supposed to run a coldplug script.
-+ if [ "${HOTPLUG}" = "yes" ]
-+ then
-+ # Check whether we should be using hotplug or coldplug
-+ if [ -x /etc/init.d/coldplug ]
-+ then
-+ start_service coldplug
-+ elif [ -x /etc/init.d/hotplug ]
-+ then
-+ start_service hotplug
-+ else
-+ unpack_firmware
-+ [ -x /sbin/udevtrigger ] && /sbin/udevtrigger
-+ fi
-+ else
-+ ewarn "Hotplug/Coldplug disabled via cmdline ..."
-+ fi
-+
- if [ "${DETECT}" = "yes" ]
- then
- ebegin "Hardware detection started"
-@@ -349,28 +372,6 @@
- fi
- fi
-
-- # First off, we want hotplug/coldplug enabled, so let's re-enable it. We do
-- # this even if we aren't startup up the hotplug/coldplug services for the
-- # installer.
-- sed -i 's/RC_COLDPLUG="no"/RC_COLDPLUG="yes"/' /etc/conf.d/rc
-- # Now, we check if we're supposed to run a coldplug script.
-- if [ "${HOTPLUG}" = "yes" ]
-- then
-- # Check whether we should be using hotplug or coldplug
-- if [ -x /etc/init.d/coldplug ]
-- then
-- start_service coldplug
-- elif [ -x /etc/init.d/hotplug ]
-- then
-- start_service hotplug
-- else
-- unpack_firmware
-- [ -x /sbin/udevtrigger ] && /sbin/udevtrigger
-- fi
-- else
-- ewarn "Hotplug/Coldplug disabled via cmdline ..."
-- fi
--
- [ "${DETECT}" = "no" ] && DHCP="no"
- [ "${DETECT}" = "yes" ] \
- && NETDEVICES="$(awk -F: '/eth.:|tr.:|ath.:|wlan.:/{print $1}' /proc/net/dev 2>/dev/null)"