Bugfixes:

* Framebufferdevices
  * Bootscripts vergessen ;-)
  * Hoffentlich den Doppel-Anmelde-Fehler behoben.
  * Jetzt Tux im Konsolensplash.
  * Libjpeg in ISO enthalten.
  * Installer gefixt.


git-svn-id: http://svn.ipfire.org/svn/ipfire/trunk@201 ea5c0bd1-69bd-2848-81d8-4f18e57aeed8
This commit is contained in:
ms
2006-07-06 20:15:31 +00:00
parent 909d1ed785
commit 6693216e1e
8 changed files with 43 additions and 17 deletions

View File

@@ -18,12 +18,6 @@
# Makefiles are based on LFSMake, which is #
# Copyright (C) 2002 Rod Roard <rod@sunsetsystems.com> #
# #
# Modifications by: #
# ??-12-2003 Mark Wormgoor < mark@wormgoor.com> #
# - Modified Makefile for IPCop build #
# #
# $Id: initscripts,v 1.6.2.2 2005/02/05 15:38:15 gespinasse Exp $
# #
###############################################################################
###############################################################################
@@ -69,4 +63,7 @@ $(TARGET) :
chgrp nobody /etc/rc.d/rc.red
chmod 4750 /etc/rc.d/rc.red
-mkdir -p /etc/boot.d
cp -f $(DIR_SRC)/src/boot.d/* /etc/boot.d
@$(POSTBUILD)

View File

@@ -122,8 +122,9 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
cd /dev && ln -sf fd0 floppy
# Nodes for Framebuffer
for i in 0 1 2 3 4 5 6 7; do
mknod /dev/fb$i c 29 $[$i * 32]
for i in `seq 0 7` 12; do \
rm -f /dev/fb$$; \
mknod /dev/fb$$i c 29 $$(($$i * 32)); \
done
@$(POSTBUILD)