Changeset 1260
- Timestamp:
- 01/28/12 12:38:57 (4 months ago)
- Location:
- main/linuxmuster-linbo/branches/testing
- Files:
-
- 4 edited
-
conf/initramfs.conf (modified) (2 diffs, 1 prop)
-
debian/changelog (modified) (1 diff)
-
debian/md5sums.src (modified) (1 diff)
-
debian/rules (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
main/linuxmuster-linbo/branches/testing/conf/initramfs.conf
- Property svn:keywords set to Id Revision
r1254 r1260 1 # $Id$ 2 # 1 3 # root directory 2 4 dir / 755 0 0 … … 172 174 173 175 # grub4dos 174 file /usr/lib/grub.exe ../../src/grub4dos/stage2/grub.exe 755 0 0 175 file /usr/lib/grub/grldr ../../src/grub4dos/stage2/grldr 755 0 0 176 file /usr/sbin/bootlace.com ../../src/grub4dos/stage2/bootlace.com 755 0 0 176 #file /usr/lib/grub.exe ../../src/grub4dos/stage2/grub.exe 755 0 0 177 #file /usr/lib/grub/grldr ../../src/grub4dos/stage2/grldr 755 0 0 178 #file /usr/sbin/bootlace.com ../../src/grub4dos/stage2/bootlace.com 755 0 0 179 file /usr/lib/badgrub.exe ../../src/grub4dos/badgrub.exe 755 0 0 180 file /usr/lib/grub.exe ../../src/grub4dos/grub.exe 755 0 0 181 file /usr/lib/grub/grldr ../../src/grub4dos/grldr 755 0 0 182 file /usr/sbin/bootlace.com ../../src/grub4dos/bootlace.com 755 0 0 177 183 178 184 # rsync -
main/linuxmuster-linbo/branches/testing/debian/changelog
r1259 r1260 1 linuxmuster-linbo (2.0.5-0) unstable; urgency=low 2 3 * grub4dos: updated to 0.4.5c-2012-01-17. 4 * linbofs: added badgrub.exe for testing purposes. 5 6 -- Thomas Schmitt <schmitt@lmz-bw.de> Sat, 28 Jan 2011 12:28:41 +0100 7 1 8 linuxmuster-linbo (2.0.4-0) unstable; urgency=low 2 9 -
main/linuxmuster-linbo/branches/testing/debian/md5sums.src
r1259 r1260 3 3 458d7cc0c69646a2caaedec5c836cdcc cloop_2.639-2.tar.gz 4 4 59b23dd05ff70791cd6449effa7fc3b6 ctorrent-dnh3.3.2.tar.gz 5 e9a5936688e97075901f099b1749dc80 grub4dos-0.4.4-2009-10-16-src.zip5 5dfa212a43c364b0b3fb43d301225f36 grub4dos-0.4.5b-2011-12-26.zip 6 6 b3ced2097ce3981abba38ceedc84f939 kexec-tools-2.0.3.tar.bz2 7 7 67252770d7009eabe8bac7c26e074f9d linux-3.0.18.tar.bz2 -
main/linuxmuster-linbo/branches/testing/debian/rules
r1259 r1260 56 56 GRUB4DOS_ARCHIVE=$(shell grep grub4dos- debian/md5sums.src | awk '{ print $$2 }') 57 57 #GRUB4DOS_DIR=src/grub4dos-$(shell echo $(GRUB4DOS_ARCHIVE) | awk -F\- '{ print $$2 }') 58 GRUB4DOS_DIR=src/$(shell echo $(GRUB4DOS_ARCHIVE) | sed -e 's/.zip//') 58 #GRUB4DOS_DIR=src/$(shell echo $(GRUB4DOS_ARCHIVE) | sed -e 's/.zip//') 59 GRUB4DOS_DIR=src/$(shell echo $(GRUB4DOS_ARCHIVE) | sed -e 's/.zip//' | awk -F\- '{ print $$1 "-" $$2 }') 59 60 #GRUB4DOS_URL=http://nufans.net/grub4dos 60 61 GRUB4DOS_URL=$(LML_URL) … … 113 114 114 115 # grub4dos 116 # -@if [ ! -d $(GRUB4DOS_DIR) ]; then \ 117 # ( [ -e cache/$(GRUB4DOS_ARCHIVE) ] || ( cd cache && wget $(GRUB4DOS_URL)/$(GRUB4DOS_ARCHIVE) ) ); \ 118 # ( cd cache && grep $(GRUB4DOS_ARCHIVE) ../debian/md5sums.src | md5sum -c ); \ 119 # echo "[1mUnpacking $(GRUB4DOS_ARCHIVE)...[0m" ; \ 120 # ( cd src && unzip ../cache/$(GRUB4DOS_ARCHIVE) ); \ 121 # echo "[1mPatching grub4dos sources...[0m" ; \ 122 # ( cd $(GRUB4DOS_DIR) && for i in ../../patches/grub4dos/*; do patch -p1 <$$i; done ); \ 123 # chmod 755 $(GRUB4DOS_DIR)/configure; \ 124 # ln -sf ../$(GRUB4DOS_DIR) src/grub4dos; \ 125 # fi 115 126 -@if [ ! -d $(GRUB4DOS_DIR) ]; then \ 116 127 ( [ -e cache/$(GRUB4DOS_ARCHIVE) ] || ( cd cache && wget $(GRUB4DOS_URL)/$(GRUB4DOS_ARCHIVE) ) ); \ … … 118 129 echo "[1mUnpacking $(GRUB4DOS_ARCHIVE)...[0m" ; \ 119 130 ( cd src && unzip ../cache/$(GRUB4DOS_ARCHIVE) ); \ 120 echo "[1mPatching grub4dos sources...[0m" ; \121 ( cd $(GRUB4DOS_DIR) && for i in ../../patches/grub4dos/*; do patch -p1 <$$i; done ); \122 chmod 755 $(GRUB4DOS_DIR)/configure; \123 131 ln -sf ../$(GRUB4DOS_DIR) src/grub4dos; \ 124 132 fi … … 257 265 258 266 # grub4dos 259 -@if [ ! -e $(GRUB4DOS_DIR)/stage2/grub.exe -o ! -e $(GRUB4DOS_DIR)/stage2/grldr -o ! -e $(GRUB4DOS_DIR)/stage2/bootlace.com ]; then \260 echo "[1mBuilding grub4dos...[0m" ; \261 ( cd $(GRUB4DOS_DIR) && CC=gcc-4.1 CFLAGS=-fno-stack-protector ./configure --prefix=/usr --enable-preset-menu=preset_menu.lst && make all && strip grub/grub );\262 fi267 # -@if [ ! -e $(GRUB4DOS_DIR)/stage2/grub.exe -o ! -e $(GRUB4DOS_DIR)/stage2/grldr -o ! -e $(GRUB4DOS_DIR)/stage2/bootlace.com ]; then \ 268 # echo "[1mBuilding grub4dos...[0m" ; \ 269 # ( cd $(GRUB4DOS_DIR) && CC=gcc-4.1 CFLAGS=-fno-stack-protector ./configure --prefix=/usr --enable-preset-menu=preset_menu.lst && make all && strip grub/grub );\ 270 # fi 263 271 264 272 # kexec-tools
Note: See TracChangeset
for help on using the changeset viewer.
