1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467
|
user-mode-linux (6.12um1) unstable; urgency=medium
* [0aa01c3] Prepare Linux 6.12 update (Closes: #1091875)
* [b339368] Update UML configs to Linux 6.12
-- Ritesh Raj Sarraf <rrs@debian.org> Mon, 13 Jan 2025 20:01:43 +0530
user-mode-linux (6.11um1) unstable; urgency=medium
* [c98ea3c] Prepare UML 6.11 update
* [a6cc029] Update UML configs to 6.11
-- Ritesh Raj Sarraf <rrs@debian.org> Tue, 22 Oct 2024 19:53:13 +0530
user-mode-linux (6.10um1) unstable; urgency=medium
* [afe46ce] Prepare for UML 6.10
* [c4638ef] Update UML configs to 6.10
-- Ritesh Raj Sarraf <rrs@debian.org> Tue, 13 Aug 2024 20:30:36 +0530
user-mode-linux (6.9um1) unstable; urgency=medium
* [d383bd1] Prepare for UML 6.9
* [a65b162] Update UML configs to Linux 6.9
-- Ritesh Raj Sarraf <ritesh.sarraf@collabora.com> Wed, 31 Jul 2024 14:31:24 +0530
user-mode-linux (6.8um1) unstable; urgency=medium
* [40da188] Update User Mode Linux to Linux 6.8
-- Ritesh Raj Sarraf <rrs@debian.org> Wed, 12 Jun 2024 19:50:01 +0530
user-mode-linux (6.7um2) unstable; urgency=medium
* [1115962] Read host architecture from dpkg-architecture.
Also, ensure to use the correct architecture string for amd64 a.k.a
x86_64
-- Ritesh Raj Sarraf <rrs@debian.org> Wed, 01 May 2024 16:24:28 +0530
user-mode-linux (6.7um1) unstable; urgency=medium
* [d8f7a45] Initial prep for update to Linux 6.7
* [80a8bd7] Update UML configs to Linux 6.7
* [76ee299] Manually fix i386 UML config file
* [2a75980] Fix long standing build hang issue with i386
* [1f2164f] Simplify oldconfig with a single target
-- Ritesh Raj Sarraf <rrs@debian.org> Tue, 30 Apr 2024 20:24:12 +0530
user-mode-linux (6.5um1) unstable; urgency=medium
* [e3ad3d9] Prepare for Linux 6.5
* [154fcd8] Update UML configurations to Linux 6.5
-- Ritesh Raj Sarraf <rrs@debian.org> Thu, 16 Nov 2023 19:35:37 +0530
user-mode-linux (6.4um1) unstable; urgency=medium
* [562517a] Prepare for UML 6.4 (Closes: #1042126)
* [28b87b9] Update UML configs for Linux 6.4
-- Ritesh Raj Sarraf <rrs@debian.org> Fri, 28 Jul 2023 19:24:31 +0530
user-mode-linux (6.3um1) unstable; urgency=medium
* [92ab76c] Prepare for Linux 6.3
* [de14c98] Update UML config files to 6.3. Disable support for VDE and
PCAP networking drivers. These drivers have been marked `obsolete` by
upstream for a while now. And the VDE driver fails to build on i386
architecture. (Closes: #1040431)
-- Ritesh Raj Sarraf <rrs@debian.org> Fri, 14 Jul 2023 21:46:40 +0530
user-mode-linux (6.1um4) unstable; urgency=medium
* [9e4f48c] Drop empty d/patches/series file
-- Ritesh Raj Sarraf <rrs@debian.org> Fri, 17 Feb 2023 18:46:23 +0530
user-mode-linux (6.1um3) unstable; urgency=medium
* [d32e7aa] Fix the incorrect conditional syntax
-- Ritesh Raj Sarraf <rrs@debian.org> Fri, 17 Feb 2023 15:19:59 +0530
user-mode-linux (6.1um2) unstable; urgency=medium
* [2fff0ad] Generate manual page from upstream kernel documentation
-- Ritesh Raj Sarraf <rrs@debian.org> Fri, 20 Jan 2023 17:29:23 +0530
user-mode-linux (6.1um1) unstable; urgency=medium
[ Debian Janitor ]
* [0f8a68d] Remove constraints unnecessary since buster (oldstable)
* [df4b211] Use secure URI in Homepage field.
* [dd8c734] Bump debhelper from old 12 to 13.
* [a43925c] Set debhelper-compat version in Build-Depends.
* [935bb81] Update standards version to 4.6.1, no changes needed.
[ Ritesh Raj Sarraf ]
* [325c79f] Prepare uml 6.1
* [7d2bd4b] Update UML configs for Linux 6.1
-- Ritesh Raj Sarraf <rrs@debian.org> Sat, 14 Jan 2023 20:45:06 +0530
user-mode-linux (6.0um1) unstable; urgency=medium
* [d91f3bd] Prepare for Linux 6.0
* [e2f4aab] Update UML configs to Linux 6.0
-- Ritesh Raj Sarraf <rrs@debian.org> Fri, 21 Oct 2022 16:57:20 +0530
user-mode-linux (5.19um1) unstable; urgency=medium
* [7fd29e3] Prepare for Linux 5.19 (Closes: #1020007)
* [f77f369] Drop patches, merged upstream
* [2eaac0c] Only invoke quilt if d/p/series is present
* [eeccb32] Update UML configs for 5.19
-- Ritesh Raj Sarraf <rrs@debian.org> Fri, 30 Sep 2022 20:38:23 +0530
user-mode-linux (5.18um1) unstable; urgency=medium
* [eb5c519] Prepare Linux UML 5.18
* [0948478] Drop patch d/p/06-um-Fix-WRITE_ZEROES-in-the-UBD-Driver.patch
* [b0129b2] Update UML configs for Linux 5.18
-- Ritesh Raj Sarraf <rrs@debian.org> Fri, 24 Jun 2022 19:13:42 +0530
user-mode-linux (5.17um1) unstable; urgency=medium
* [343f7d5] Prepare Linux 5.17
* [adda22f] Drop patch 05_fix_static_build.patch
-- Ritesh Raj Sarraf <rrs@debian.org> Mon, 02 May 2022 14:25:47 +0530
user-mode-linux (5.16um1) unstable; urgency=medium
[ Walter Lozano ]
* [d1cdd21] Disable VMAP_STACK
[ Ritesh Raj Sarraf ]
* [fd84c2a] Prepare for Linux 5.16 (Closes: #1005443)
* [6e35b4e] Update UML configs to Linux 5.16.7
-- Ritesh Raj Sarraf <rrs@debian.org> Sun, 13 Feb 2022 20:05:32 +0530
user-mode-linux (5.15um2) unstable; urgency=medium
[ Frédéric Danis ]
* [194182c] Add patch to fix WRITE_ZEROES in the UBD Driver
[ Ritesh Raj Sarraf ]
* [5461e10] Refresh the patch
* [c7993ad] Update Linux UML config files
-- Ritesh Raj Sarraf <rrs@debian.org> Mon, 31 Jan 2022 16:01:39 +0530
user-mode-linux (5.15um1) unstable; urgency=medium
* [05525b8] Prepare update to Linux 5.15
* [3fadec1] Update configs to 5.15
-- Ritesh Raj Sarraf <rrs@debian.org> Wed, 24 Nov 2021 12:57:56 +0530
user-mode-linux (5.14um1) unstable; urgency=medium
* [ea5aed5] Prepare for 5.14 Linux update
* [a3ad117] Drop patches. May not be relevant any more
* [5911d78] Update Linux configs to 5.14 (Closes: #995263)
-- Ritesh Raj Sarraf <rrs@debian.org> Fri, 08 Oct 2021 21:25:11 +0530
user-mode-linux (5.10um3) unstable; urgency=medium
* [95d05ef] Drop patch um_mark_all_kernel_symbols_as_local.patch
(Closes: #989665)
* [bf8d469] Update UML Linux configs
-- Ritesh Raj Sarraf <rrs@debian.org> Fri, 11 Jun 2021 11:43:23 +0530
user-mode-linux (5.10um2) unstable; urgency=medium
[ Christopher Obbard ]
* [d9ca0da] debian/watch: Track Debian Linux package
[ Ritesh Raj Sarraf ]
* [f768bbd] Makr all kernel symbols as local (Closes: #983379)
* [050050b] Refresh patches
* [110f0b2] Enable kernel debug info
-- Ritesh Raj Sarraf <rrs@debian.org> Sun, 07 Mar 2021 10:01:29 +0530
user-mode-linux (5.10um1) unstable; urgency=medium
[ Debian Janitor ]
* [4b95d20] Trim trailing whitespace.
[ Ritesh Raj Sarraf ]
* [96b5aeb] Prepare for Linux 5.10
* [1f00328] Update UML configs for Linux 5.10
* [7177cae] Set priority to optional
* [235490c] Rename d/NEWS.Debian to d/NEWS
-- Ritesh Raj Sarraf <rrs@debian.org> Sat, 09 Jan 2021 20:56:48 +0530
user-mode-linux (5.9um1) unstable; urgency=medium
* [016b157] Prepare for Linux 5.9
* [ecd8715] Enable VirtIO UML and update config for Linux 5.9
* [533ed9e] Update build dependency on vde to reflect name change
-- Ritesh Raj Sarraf <rrs@debian.org> Fri, 23 Oct 2020 22:08:59 +0530
user-mode-linux (5.8um1) unstable; urgency=medium
* [b7db191] Prepare for Linux 5.8 (Closes: #971135)
* [9ca8d98] Update kernel configs for Linux 5.8
* [3d34593] Disable BPFILTER for architecture i386
- For reasons unclear, having BPFILTER enabled in the config makes kbuild
think the config is incomplete. So lets not block because of it
-- Ritesh Raj Sarraf <rrs@debian.org> Thu, 01 Oct 2020 16:54:44 +0530
user-mode-linux (5.7um1) unstable; urgency=medium
* [3b1a66e] Bump for Linux 5.7
* [3b60493] Update Linux UML configs to 5.7
* [42d5482] Update patches for Linux 5.7
-- Ritesh Raj Sarraf <rrs@debian.org> Fri, 26 Jun 2020 10:43:11 +0530
user-mode-linux (5.6um2) unstable; urgency=medium
* [db8c0df] Document the extra care needed for x32
* [5df39ac] Fix i386 build config
-- Ritesh Raj Sarraf <rrs@debian.org> Fri, 12 Jun 2020 17:54:23 +0530
user-mode-linux (5.6um1) unstable; urgency=medium
* [3571560] Bump to include support for Linux 5.6
* [a731b9c] Update Linux UML configs to 5.6
-- Ritesh Raj Sarraf <rrs@debian.org> Tue, 02 Jun 2020 22:10:35 +0530
user-mode-linux (5.5um1) unstable; urgency=medium
[ Santiago Ruano Rincón ]
* [906e41a] README.Debian: update linux directory path
[ Ritesh Raj Sarraf ]
* [0cbab46] Document CAP_NET_ADMIN usability
* [674be91] Add packaging format, 3.0 native
* [2e09ba1] Bump to Linux version 5.5
* [cee84f0] Use parallel build options.
Thanks to Sjoerd Simons
* [0610187] config.amd64: Set CONFIG_HW_RANDOM=y.
Thanks to Sjoerd Simons
-- Ritesh Raj Sarraf <rrs@debian.org> Fri, 20 Mar 2020 20:38:53 +0530
user-mode-linux (5.4-1um-2) unstable; urgency=medium
* [3f7e38a] Update gbp.conf about tag format
* [6a3bf60] Update kernel configuration files
* [30c4f66] Add settings suiting to pkg-uml packaging
-- Ritesh Raj Sarraf <rrs@debian.org> Wed, 01 Jan 2020 12:21:12 +0530
user-mode-linux (5.4-1um-1) unstable; urgency=medium
* [da6bf6c] Update to Linux 5.4
* [5049017] Refresh patch debian/patches/08-fix-pcap-linkage.patch
-- Ritesh Raj Sarraf <rrs@debian.org> Mon, 30 Dec 2019 16:19:19 +0530
user-mode-linux (5.3-1um-1) unstable; urgency=medium
* [10ebf91] Update to track Linux 5.3
* [52d3b7c] Update uml kernel config to 5.3
* [f424b72] Update i386 kernel configuration.
Thanks to Bastian Blank
* [d25b501] Mark rules require root to no
-- Ritesh Raj Sarraf <rrs@debian.org> Tue, 22 Oct 2019 13:45:43 +0530
user-mode-linux (5.2-1um-2) unstable; urgency=medium
* [49a481e] Add gcc-multilib to build depends. Should fix FTBFS on i386
-- Ritesh Raj Sarraf <rrs@debian.org> Fri, 18 Oct 2019 21:11:35 +0530
user-mode-linux (5.2-1um-1) unstable; urgency=medium
* [c5a5e78] Drop Mattia Dongili from Uploaders list (Closes: #933156)
* [500e629] Update to Linux 5.2 (Closes: #938962)
* [2ce49b7] Drop patch fix-port-helper-path.patch. Applied upstream
* [659a640] Refresh patches
* [84a2a9c] Update UML kernel configuration to 5.2
* [d61f9d5] Add patch 08-fix-pcap-linkage.patch to fix pcap linkage.
Thanks to Anton Ivanov
* [54590ee] Disable CONFIG_UML_NET_PCAP to avoid linkage with pcap
-- Ritesh Raj Sarraf <rrs@debian.org> Thu, 17 Oct 2019 16:53:36 +0530
user-mode-linux (4.19-1um-1) unstable; urgency=medium
* [a505b8d] Update to Linux 4.19 (Closes: #916958)
* [537c895] Drop patch fix-i386-ptrace-build.patch. Merged upstream
* [fe91d84] Refresh patch
-- Ritesh Raj Sarraf <rrs@debian.org> Thu, 27 Dec 2018 13:16:23 +0530
user-mode-linux (4.17-1um-1) unstable; urgency=medium
* [c640a0e] Add patch to fix port-helper architecture dependent path
(Closes: #868285)
* [3af34b3] Update to Linux 4.17
* [312ff63] Add lintian override for source package
-- Ritesh Raj Sarraf <rrs@debian.org> Sat, 25 Aug 2018 10:25:30 +0545
user-mode-linux (4.16-1um-2) unstable; urgency=medium
* [3a7ffd8] Fix build failure on i386 architecture.
Thanks to Richard Weinberger
* [ac554e8] Refresh patches
-- Ritesh Raj Sarraf <rrs@debian.org> Fri, 15 Jun 2018 15:25:30 +0545
user-mode-linux (4.16-1um-1) unstable; urgency=medium
* [4f0e0a8] Switch packaging repository to Salsa
* [94e916a] Switch Maintainer email address (Closes: #899720)
* [0e56bcc] Use tracker as maintainer email address
* [0f68dd3] Update to Linux 4.16
* [98f3862] Drop patch 08-use-posix-ucontext.patch
Merged in Linux 4.16
* [38116f5] Add bison to build dependency
* [e5ae8d8] Add flex to build dependency
-- Ritesh Raj Sarraf <rrs@debian.org> Tue, 12 Jun 2018 10:24:43 +0545
user-mode-linux (4.15-1um-1) unstable; urgency=medium
* [688b914] New Linux Release
-- Ritesh Raj Sarraf <rrs@debian.org> Tue, 27 Feb 2018 11:16:10 +0530
user-mode-linux (4.14-1um-3) unstable; urgency=medium
* Rebuild with newer linux-source-4.14 (Closes: #888971)
-- Ritesh Raj Sarraf <rrs@debian.org> Sun, 18 Feb 2018 12:21:20 +0530
user-mode-linux (4.14-1um-2) unstable; urgency=medium
* [5b667b5] Use POSIX ucontext_t instead of struct ucontext
(Closes: #887761)
-- Ritesh Raj Sarraf <rrs@debian.org> Tue, 30 Jan 2018 17:39:04 +0530
user-mode-linux (4.14-1um-1) unstable; urgency=medium
* [8fdb9d1] Newer Linux version, 4.14
* [398892e] Refresh patches
-- Ritesh Raj Sarraf <rrs@debian.org> Tue, 26 Dec 2017 09:00:59 +0530
user-mode-linux (4.13-1um-1) unstable; urgency=medium
* [a1b6db8] Bump UML to newer 4.13 kernel (Closes: #880304)
* [c516bca] Add debian/gbp.conf
-- Ritesh Raj Sarraf <rrs@debian.org> Tue, 07 Nov 2017 21:53:50 +0530
user-mode-linux (4.9-1um-1) unstable; urgency=medium
* [e2e3efe] New Linux Release: 4.9
-- Ritesh Raj Sarraf <rrs@debian.org> Sat, 14 Jan 2017 14:45:22 +0530
user-mode-linux (4.8-1um-3) unstable; urgency=medium
* [127dbbc] Drop dependency on gcc-5
* [1b4b24d] Enable parallel build
* Rebuild with latest Linux 4.8, 4.8.15-2
-- Ritesh Raj Sarraf <rrs@debian.org> Sat, 07 Jan 2017 20:42:32 +0530
user-mode-linux (4.8-1um-2) unstable; urgency=medium
* Rebuild with latest Linux 4.8, with all stable security fixes
-- Ritesh Raj Sarraf <rrs@debian.org> Thu, 22 Dec 2016 15:04:58 +0530
user-mode-linux (4.8-1um-1) unstable; urgency=medium
* [b4834f3] Use gcc-5 to build the kernel
* [ee7785d] Revert "Fix uml kernel build, disabling PIE and bindnow"
* [e0b3e3d] Bump linux version to 4.8
-- Ritesh Raj Sarraf <rrs@debian.org> Tue, 01 Nov 2016 17:53:39 +0530
user-mode-linux (4.7-1um-2) unstable; urgency=medium
* [9a4719f] Fix uml kernel build, disabling PIE and bindnow.
Thanks to Balint Reczey (Closes: 837579)
-- Ritesh Raj Sarraf <rrs@debian.org> Sat, 22 Oct 2016 13:00:35 +0530
user-mode-linux (4.7-1um-1) unstable; urgency=medium
* [c36fba9] Add homepage field
* [6aada24] Bump linux version to 4.7
-- Ritesh Raj Sarraf <rrs@debian.org> Mon, 05 Sep 2016 18:40:07 +0530
user-mode-linux (4.6-1um-1) unstable; urgency=medium
The "DebConf 16 Recharged" Release
* Initial bump to start work on 4.6 kernel
* Replace module-init-tools with the new (superseeding) kmod tool
* Update kernel version in debian/rules
* Update kernel config files with new features
* Add libssl-dev to build depends. Needed to compile newer kernels
* Promote uml-utilities to Recommends. The UML team has plans to continue
maintaining it. Thanks Mattia
* Bump debhelper compatibility to 9
* Fix Vcs URLs to secure ones
* Replace deprecated dh_clean with dh_prep
* Bump Standards Version to 3.9.8
* Fix Vcs URL to be canonical
-- Ritesh Raj Sarraf <rrs@debian.org> Sat, 16 Jul 2016 21:48:06 +0530
user-mode-linux (3.12-1um-1) unstable; urgency=high
* New upstream release (Closes: #733351) - aka. I wish there was a better
way.
-- Mattia Dongili <malattia@debian.org> Mon, 30 Dec 2013 07:53:50 +0900
user-mode-linux (3.11-1um-2) unstable; urgency=high
* enable devtmpfs for udev
-- Mattia Dongili <malattia@debian.org> Sun, 20 Oct 2013 23:48:54 +0900
user-mode-linux (3.11-1um-1) unstable; urgency=high
* New upstream release (Closes: #712234)
* Add NFSv4 support (Closes: #651307)
-- Mattia Dongili <malattia@debian.org> Sun, 20 Oct 2013 21:38:50 +0900
user-mode-linux (3.2-2um-1) unstable; urgency=high
* Add Built-Using per Policy §7.8 (Closes: #679300).
* Refresh patches to apply with no fuzz to latest linux-source.
* Set new kernel options:
SECURITY_APPARMOR_COMPAT_24=y
NET_SCH_CODEL=m
FQ_CODEL=m
* Bump version number to upload as a proper foreign package.
-- Mattia Dongili <malattia@debian.org> Fri, 04 Jan 2013 07:11:32 +0900
user-mode-linux (3.2-1um-1) unstable; urgency=low
[ Mattia Dongili ]
* Use the kernel stripping options rather than our own
[ Ritesh Raj Sarraf ]
* New upstream release (Closes: #663437)
* Revive the uml kernel config
- Enable and use CFQ as the default scheduler.
- Enable SELinux and AppArmor
- Enable many networking drivers
- Enable many SCSI subsystems.
* update Vcs-Browser link to anonscm
* add myself to uploaders
* Add patch from upstream to fix build failure on i386 arch
-- Ritesh Raj Sarraf <rrs@debian.org> Tue, 17 Apr 2012 17:21:11 +0530
user-mode-linux (2.6.32-1um-4) unstable; urgency=high
* Update kernel config to the latest available for squeeze
-- Mattia Dongili <malattia@debian.org> Thu, 27 Jan 2011 07:30:00 +0900
user-mode-linux (2.6.32-1um-3) unstable; urgency=low
* Sigh, the new 2.6.32 upload includes the IF_NOTIFY_RESUME patch included
in the previous version so u-m-l failed to build again :(
-- Mattia Dongili <malattia@debian.org> Fri, 08 Jan 2010 21:30:39 +0900
user-mode-linux (2.6.32-1um-2) unstable; urgency=low
* Fix build failure due to SUBARCH being passed with a wrong value
-- Mattia Dongili <malattia@debian.org> Fri, 08 Jan 2010 07:32:04 +0900
user-mode-linux (2.6.32-1um-1) unstable; urgency=low
* New upstream release (Closes: #560673).
[ Mattia Dongili (4) ]
Update dependencies and prepare 2.6.32
add a patch to fix IF_NOTIFY_RESUME build error
Update kernel configurations
Allow setting the target architecture ont the command line
Make lintian really slightly happier
Override -rpath lintian tag, this is required for uml to work
-- Mattia Dongili <malattia@debian.org> Thu, 07 Jan 2010 21:11:42 +0900
user-mode-linux (2.6.30-1um-1) unstable; urgency=low
* New upstream release.
* Remove 07_vde_user_build_fix which has been merged upstream.
* Add 04_remove_irqf_disabled.patch to bring get a working network inside
the guest.
* Removed possibly MIA uploaders (Stefano Melchior) (Closes: #514667).
* Include more config options (i.e.: IP_VS) (Closes: #509434).
* Stop suggesting linux-patch-skas, not in the repository anymore
(Closes: #495651).
* Suggest: vde2 for the vde UML network driver.
* Fix strrchr symbol clash on forced static builds (Closes: #494995).
-- Mattia Dongili <malattia@debian.org> Sun, 05 Jul 2009 11:07:28 +0900
user-mode-linux (2.6.26-1um-2) unstable; urgency=low
* remove debian/patches/08_fix_ptrace_crash.patch (in 2.6.26.1) and
rebuild against the current stable revision released from the Debian
kernel team
* cleanup unused patches
-- Mattia Dongili <malattia@debian.org> Sat, 09 Aug 2008 14:29:08 +0900
user-mode-linux (2.6.26-1um-1) unstable; urgency=medium
* New upstream release.
* added two fixes from uptream:
debian/patches/07_vde_user_build_fix.patch
debian/patches/08_fix_ptrace_crash.patch (in 2.6.26.1)
-- Mattia Dongili <malattia@debian.org> Sat, 02 Aug 2008 12:17:12 +0900
user-mode-linux (2.6.25-1um-2) unstable; urgency=medium
* Fix build error in amd64 (Closes: #491921)
* slightly bump urgency to try to be in testing quicker to allow a new
upload uml 2.6.26 when the kernel team uploads linux-source-2.6.26
-- Mattia Dongili <malattia@debian.org> Thu, 24 Jul 2008 07:18:01 +0900
user-mode-linux (2.6.25-1um-1) unstable; urgency=low
* New upstream release.
* now obviously depends on linux-source-2.6.25 (Closes: #488830)
* added a patch successfully build with gcc-4.3 (Closes: #467475)
* added a patch to fix UML segfaulting on negative semaphore values
-- Mattia Dongili <malattia@debian.org> Sat, 19 Jul 2008 19:58:26 +0900
user-mode-linux (2.6.24-1um-1) unstable; urgency=low
* New upstream release.
[Mattia Dongili]:
* add libvdeplug2 dependency
-- Mattia Dongili <malattia@debian.org> Sun, 03 Feb 2008 16:08:54 +0900
user-mode-linux (2.6.23-1um-1) unstable; urgency=low
* New upstream release (Closes: #456836).
[Mattia Dongili]:
* set NETFILTER_XT_TARGET_CONNMARK (Closes: #440083)
* bump Standards-Version to 3.7.3
* update i386 and amd64 configurations
* rework debian/rules because of some bugs detected when building with -j6
* remove 04_restructure-do_aio.patch which has been included upstream
-- Mattia Dongili <malattia@debian.org> Mon, 24 Dec 2007 17:34:02 +0900
user-mode-linux (2.6.22-1um-1) unstable; urgency=low
* New upstream release (Closes: #436388).
[Mattia Dongili]:
* remove inactive people from uploaders
* remove debugging options from .config
* remove umldefconfig as it's easy to get from the kernel sources
[Upstream patch]:
* Restructure do_aio (Closes: #438568)
-- Mattia Dongili <malattia@debian.org> Sun, 19 Aug 2007 11:04:10 +0900
user-mode-linux (2.6.21-1um-1) unstable; urgency=low
* New upstream release.
* add amd64 (Closes: #384881)
-- Mattia Dongili <malattia@debian.org> Sun, 27 May 2007 13:22:18 +0900
user-mode-linux (2.6.20-1um-1) unstable; urgency=low
* New upstream release.
* Build against 2.6.20 which _is_ in the archive (Closes: #422398)
* Included more crypto algorithms [Stefano Melchior] (Closes: #410597)
* Configured more and more options (Closes: #416517) (Closes: #422145)
* Removed 04_include_PAGESHIFT_definition.patch, included upstream
-- Mattia Dongili <malattia@debian.org> Mon, 07 May 2007 12:20:55 +0900
user-mode-linux (2.6.18-1um-2) unstable; urgency=low
* removed patches/04_no-syscall, included in the 2.6.18 stable branch.
* added patches/04_include_PAGESHIFT_definition to fix build failure with
recent glibc.
-- Mattia Dongili <malattia@debian.org> Thu, 09 Nov 2006 19:08:36 +0100
user-mode-linux (2.6.18-1um-1) unstable; urgency=low
* New upstream release.
* add patches/04_no-syscall from upstream to fix build failure.
* 'mv debian/NEWS debian/NEWS.Debian' so that it will be catched by
apt-listchanges.
-- Mattia Dongili <malattia@debian.org> Tue, 03 Oct 2006 20:46:05 +0200
user-mode-linux (2.6.17-1um-2) unstable; urgency=low
* Include IP_VS support. (Closes: #382295)
* Update config.i386 against current linux-source package.
-- Mattia Dongili <malattia@debian.org> Fri, 11 Aug 2006 13:15:21 +0200
user-mode-linux (2.6.17-1um-1) unstable; urgency=low
* New upstream release:
- includes TLS support (Closes: #312562) (Closes: #265486)
- merged 01_uml_net patch (hence dropped from the package)
* Build with HOST_2G_2G as the kernel team doesn't seem to care about setting
a decent PAGE_OFFSET (hopefully closes: #366915).
-- Mattia Dongili <malattia@debian.org> Sat, 24 Jun 2006 11:57:45 +0200
user-mode-linux (2.6.16-2um-1) unstable; urgency=low
[Mattia Dongili]:
* add 03_uml_switch patch (Closes: #367132)
* use the alternatives system to avoid conflicting with kernel-package
self-build UML kernels.
* don't include the debian directory in orig.tar.gz
* bump Standards-Version to the latest (3.7.2)
* enable dm-* and cyphers modules in config.
-- Mattia Dongili <malattia@debian.org> Wed, 31 May 2006 18:06:30 +0200
user-mode-linux (2.6.16-1um-2) unstable; urgency=low
[Mattia Dongili]:
* set Uploaders and Maintainer to reflect the team work.
* add CONFIG_INITRD=y to allow bootstrapping install media.
* set CONFIG_ISO9660_FS=y to allow mounting iso images when bootstrapping
from install media.
* remove useless lintian.overrides file.
-- Mattia Dongili <malattia@debian.org> Sat, 29 Apr 2006 21:23:58 +0200
user-mode-linux (2.6.16-1um-1) unstable; urgency=low
* New upstream release (definitely Closes: #264772).
[Mattia Dongili]:
* added myself to the uploaders
* fixed dependency on module-init-tools for kernel 2.6
* using dpatch to apply patches, current patches are:
- 01_uml_net
- 02_x-terminal-emulator
* updated config for 2.6.16
* installing uml defconfig as a reference
* converted lots of stuff to modular build
* updated manpage for the linux executable
-- Mattia Dongili <malattia@debian.org> Sat, 01 Apr 2006 15:58:36 +0200
user-mode-linux (2.6.15-1um-1) unstable; urgency=low
* New upstream release
-- Stefano Melchior <stefano.melchior@openlabs.it> Fri, 17 Feb 2006 20:40:54 +0100
user-mode-linux (2.6.14-1um-1) unstable; urgency=low
* New upstream release
-- Stefano Melchior <stefano.melchior@openlabs.it> Sat, 14 Jan 2006 20:30:41 +0100
user-mode-linux (2.6.12-1um-1) unstable; urgency=low
* New upstream release (Closes: #271246, Closes: #271246, Closes: #276993, Closes: #170878).
* 2.4 and 2.6 support available (Closes: #264722).
* uml_net support fixed bug (Closes: #140790).
-- Stefano Melchior <stefano.melchior@openlabs.it> Wed, 26 Oct 2005 14:58:47 +0200
user-mode-linux (2.4.26-3um-1) unstable; urgency=low
* New upstream release
- mara-13-hostfs_access.diff is now obsolete
- Includes updated config for current Debian kernel source (Closes: #268286)
-- Matt Zimmerman <mdz@debian.org> Wed, 8 Sep 2004 16:49:52 -0700
user-mode-linux (2.4.26-2um-1) unstable; urgency=low
* New upstream release
- Obsoletes (at least mostly) mara-12-hostfs.diff, remove
- Obsoletes hostfs-perms.diff, remove
- Hostfs is back to a basic working state (Closes: #221196), but still
has serious bugs
- Should fix the wait_for_stop panic (Closes: #256873)
* Enable CONFIG_KMOD (Closes: #231057)
* Enable packet classifiers (Closes: #235037)
-- Matt Zimmerman <mdz@debian.org> Fri, 16 Jul 2004 17:15:39 -0700
user-mode-linux (2.4.26-1um-1) unstable; urgency=low
* New upstream release
-- Matt Zimmerman <mdz@debian.org> Sat, 5 Jun 2004 11:25:39 -0700
user-mode-linux (2.4.25-1um-1) unstable; urgency=low
* New upstream release
* Hostfs is broken, include some patches to fix it:
- mara-12-hostfs.diff, mara-13-hostfs_access.diff:
patches from Henrik Nordstrom
- hostfs-perms.diff:
patch from me to fix one more case
* Patch needed to fix tt mode on 2.6 hosts is still not merged; include it
(Closes: #220526)
-- Matt Zimmerman <mdz@debian.org> Fri, 4 Jun 2004 18:18:01 -0700
user-mode-linux (2.4.24-1um-2) unstable; urgency=high
* Build-Depends: kernel-source-2.4.24 (>= 2.4.24-3) to get the fix for
CAN-2004-0077 (mremap)
-- Matt Zimmerman <mdz@debian.org> Mon, 1 Mar 2004 18:06:08 -0800
user-mode-linux (2.4.24-1um-1) unstable; urgency=low
* New upstream release
- Fixes timestamps on /proc (Closes: #224215)
-- Matt Zimmerman <mdz@debian.org> Mon, 16 Feb 2004 22:52:45 -0800
user-mode-linux (2.4.23-2um-1) unstable; urgency=low
* New upstream release
- Fixes RTC problems with processors faster than 2GHz (Closes: #226744)
-- Matt Zimmerman <mdz@debian.org> Mon, 19 Jan 2004 09:40:43 -0800
user-mode-linux (2.4.23-1um-3) unstable; urgency=low
* Improve the README.Debian suggestions regarding kernel modules
* Update file:// URLs in man page to include the html/ subdir in
user-mode-linux-doc (Closes: #224956)
* Include upstream changelog (Closes: #224488)
-- Matt Zimmerman <mdz@debian.org> Tue, 13 Jan 2004 09:53:43 -0800
user-mode-linux (2.4.23-1um-2) unstable; urgency=low
* Fix reversed test for DH_BUILD_OPTIONS=nostrip which caused (enormous)
unstripped modules to be included in the .deb
-- Matt Zimmerman <mdz@debian.org> Tue, 30 Dec 2003 10:11:27 -0800
user-mode-linux (2.4.23-1um-1) unstable; urgency=low
* New upstream release
* Build-depend on kernel-source-2.4.23, kernel-patch-uml >= 20031230-1
* Add debian/crypto.diff to source the crypto config (moved from
kernel-patch-uml)
* Remove build-dep on gcc-2.95
-- Matt Zimmerman <mdz@debian.org> Tue, 30 Dec 2003 09:06:28 -0800
user-mode-linux (2.4.22-7um-2) unstable; urgency=low
* Start building with the default gcc again. This seems to work OK now,
and, coincidentally, building with gcc 2.95 seems to break things in
subtle ways, apparently related to threads. (Closes: #224431) This may
reopen #176485 (broken slirp transport), but with the new
uml-utilities uml_switch setup, slirp isn't as interesting, and it's
much better to have a working UML
* Modules broken due to missing exported symbols; moving on to 2.4.23
rather than patching it
-- Matt Zimmerman <mdz@debian.org> Tue, 30 Dec 2003 08:59:22 -0800
user-mode-linux (2.4.22-7um-1) unstable; urgency=low
* New upstream release
-- Matt Zimmerman <mdz@debian.org> Tue, 16 Dec 2003 14:52:03 -0800
user-mode-linux (2.4.22-6um-1) unstable; urgency=low
* New upstream release
-- Matt Zimmerman <mdz@debian.org> Tue, 16 Dec 2003 13:58:22 -0800
user-mode-linux (2.4.22-5um-1) unstable; urgency=low
* New upstream release
* Don't strip loadable modules if DEB_BUILD_OPTIONS contains nostrip
* Don't rely on the timestamp of arch/um in debian/rules
* Change the default path to the uml_switch socket to match what is used
by the uml_switch started by uml-utilities. This means that you can
now use just "eth0=daemon" and connect to uml_switch.
-- Matt Zimmerman <mdz@debian.org> Fri, 19 Sep 2003 21:34:28 -0400
user-mode-linux (2.4.22-3um-1) unstable; urgency=low
* Support DEB_BUILD_OPTIONS=noopt to build with -O1 rather than -O2
* Update linux(1) for latest daemon transport syntax
-- Matt Zimmerman <mdz@debian.org> Fri, 12 Sep 2003 09:58:04 -0400
user-mode-linux (2.4.21-1um-1) unstable; urgency=low
* New upstream release
* No 2.4.22 yet, as there is not yet a kernel-source-2.4.22
* New kernel-patch-uml fixes some bugs:
- 2.4.21-based (Closes: #205135)
- Exports missing symbols so that modules work (Closes: #208355)
-- Matt Zimmerman <mdz@debian.org> Thu, 4 Sep 2003 17:08:41 -0400
user-mode-linux (2.4.20-8um-2) unstable; urgency=low
* Fix man page to correctly document the daemon transport
-- Matt Zimmerman <mdz@debian.org> Mon, 1 Sep 2003 14:05:14 -0400
user-mode-linux (2.4.20-8um-1) unstable; urgency=low
* New upstream release
* Disable SMP support because it breaks the build
* Minor debian/rules cleanup
-- Matt Zimmerman <mdz@debian.org> Mon, 1 Sep 2003 00:44:54 -0400
user-mode-linux (2.4.20-7um-1) unstable; urgency=low
* New upstream release
-- Matt Zimmerman <mdz@debian.org> Fri, 8 Aug 2003 18:25:16 -0400
user-mode-linux (2.4.20-6um-2) unstable; urgency=low
* Build-Depends: modutils (Closes: #198337)
* Build-Depends: kernel-patch-uml (= 20030606-2)
-- Matt Zimmerman <mdz@debian.org> Thu, 24 Jul 2003 09:30:46 -0400
user-mode-linux (2.4.20-6um-1) unstable; urgency=low
* New upstream release
-- Matt Zimmerman <mdz@debian.org> Fri, 6 Jun 2003 10:11:56 -0400
user-mode-linux (2.4.20-5um-1) unstable; urgency=low
* New upstream release
* Add reference to linux --help in man page
* Remove old info about root-hostfs from man page 'ubd' section, point
to 'root'
* Clean up debian/rules a bit
-- Matt Zimmerman <mdz@debian.org> Fri, 23 May 2003 18:25:21 -0400
user-mode-linux (2.4.20-4um-1) unstable; urgency=low
* New upstream release
- Fixes hostfs permissions bug (Closes: #188320)
* Correct file:// URLs in man page (Closes: #190412)
* Document new hostfs root syntax in man page (Closes: #190676)
-- Matt Zimmerman <mdz@debian.org> Fri, 25 Apr 2003 00:26:24 -0400
user-mode-linux (2.4.20-3um-1) unstable; urgency=low
* New upstream release
* Enable netfilter stuffs (Closes: #187399)
-- Matt Zimmerman <mdz@debian.org> Fri, 4 Apr 2003 19:27:05 -0500
user-mode-linux (2.4.20-2um-1) unstable; urgency=low
* New upstream release
* Build with gcc-2.95 (hopefully Closes: #176485)
-- Matt Zimmerman <mdz@debian.org> Mon, 24 Mar 2003 23:37:59 -0500
user-mode-linux (2.4.20-1um-1) unstable; urgency=low
* New upstream release
* Change version number slightly to match upstream's scheme
* Suggest kernel-patch-skas, now in unstable
-- Matt Zimmerman <mdz@debian.org> Fri, 28 Feb 2003 14:06:46 -0500
user-mode-linux (2.4.19.50um-1) unstable; urgency=low
* New upstream release
-- Matt Zimmerman <mdz@debian.org> Thu, 6 Feb 2003 22:55:27 -0500
user-mode-linux (2.4.19.49um-1) unstable; urgency=low
* New upstream release
-- Matt Zimmerman <mdz@debian.org> Sun, 2 Feb 2003 20:22:22 -0500
user-mode-linux (2.4.19.48um-1) unstable; urgency=low
* New upstream release
-- Matt Zimmerman <mdz@debian.org> Tue, 28 Jan 2003 00:08:29 -0500
user-mode-linux (2.4.19.46um-1) unstable; urgency=low
* New upstream release
-- Matt Zimmerman <mdz@debian.org> Thu, 9 Jan 2003 19:46:07 -0500
user-mode-linux (2.4.19.45um-1) unstable; urgency=low
* New upstream release
-- Matt Zimmerman <mdz@debian.org> Tue, 24 Dec 2002 17:19:14 -0500
user-mode-linux (2.4.19.40um-1) unstable; urgency=low
* New upstream release
-- Matt Zimmerman <mdz@debian.org> Thu, 19 Dec 2002 20:10:17 -0500
user-mode-linux (2.4.19.38um-1) unstable; urgency=low
* New upstream release
-- Matt Zimmerman <mdz@debian.org> Sun, 15 Dec 2002 21:41:23 -0500
user-mode-linux (2.4.19.37um-1) unstable; urgency=low
* New upstream release
* Enable SKAS support (requires host kernel patch in order to work)
-- Matt Zimmerman <mdz@debian.org> Thu, 12 Dec 2002 09:45:05 -0500
user-mode-linux (2.4.19.33um-1) unstable; urgency=low
* New upstream release
* Enable NFS root and dependent options
* Enable initrd (Closes: #170681)
-- Matt Zimmerman <mdz@debian.org> Mon, 2 Dec 2002 14:55:01 -0500
user-mode-linux (2.4.19.25um-1) unstable; urgency=low
* New upstream release
* Remove temporary module work area in 'clean' target
* Use xargs --no-run-if-empty to avoid an error if no modules are
configured
* Compile in loop device support, rather than building as a module, to
allow for easier installation testing (Closes: #165958)
* Enable NFS (v2 and v3), SMB, NCP, Coda and Intermezzo support
(Closes: #166780)
-- Matt Zimmerman <mdz@debian.org> Sun, 3 Nov 2002 15:38:45 -0500
user-mode-linux (2.4.19.20um-1) unstable; urgency=low
* New upstream release
-- Matt Zimmerman <mdz@debian.org> Fri, 25 Oct 2002 00:41:16 -0400
user-mode-linux (2.4.19.17um-1) unstable; urgency=low
* New upstream release
* Temporarily disable pcap transport, since it didn't build
correctly
* Enable MD and LVM
* Enable slirp transport. This may allow for networking with minimal
configuration and no root privileges, but is relatively new.
* Enable SMP!
-- Matt Zimmerman <mdz@debian.org> Mon, 21 Oct 2002 21:44:42 -0400
user-mode-linux (2.4.19.12um-1) unstable; urgency=low
* New upstream release
-- Matt Zimmerman <mdz@debian.org> Mon, 7 Oct 2002 22:05:55 -0400
user-mode-linux (2.4.19.11um-1) unstable; urgency=low
* New upstream release
-- Matt Zimmerman <mdz@debian.org> Sun, 6 Oct 2002 22:46:24 -0400
user-mode-linux (2.4.19.9um-1) unstable; urgency=low
* New upstream release
-- Matt Zimmerman <mdz@debian.org> Fri, 4 Oct 2002 23:49:52 -0400
user-mode-linux (2.4.19.6um-1) unstable; urgency=low
* Remove gcc and make from Build-Depends, as they are clearly
build-essential. What was I thinking...
* Suggest x-terminal-emulator, rater than xterm, since it works now
(since 2.4.18.48um-1)
-- Matt Zimmerman <mdz@debian.org> Sun, 22 Sep 2002 11:44:19 -0400
user-mode-linux (2.4.19.4um-1) unstable; urgency=low
* New upstream release
* Add note to README.Debian about how kernel modules are handled
-- Matt Zimmerman <mdz@debian.org> Sat, 14 Sep 2002 12:45:19 -0400
user-mode-linux (2.4.19.2um-2) unstable; urgency=low
* Now to take care of some easy bugs...
* Add "UML" to description (Closes: #156806)
* Enable IPv6 module (Closes: #156465)
* Enable netfilter (Closes: #154674)
* Enable a bunch of other networking stuff as well, since network
testing seems to be a popular UML application
-- Matt Zimmerman <mdz@debian.org> Thu, 5 Sep 2002 22:44:37 -0400
user-mode-linux (2.4.19.2um-1) unstable; urgency=low
* New upstream release
-- Matt Zimmerman <mdz@debian.org> Thu, 5 Sep 2002 22:13:34 -0400
user-mode-linux (2.4.18.49um-1) unstable; urgency=low
* New upstream release
-- Matt Zimmerman <mdz@debian.org> Sat, 3 Aug 2002 12:08:52 -0400
user-mode-linux (2.4.18.48um-1) unstable; urgency=low
* New upstream release
* Mention DevFS config in README.Debian (Closes: #154276)
* This version supports non-xterm terminal emulators, so use
x-terminal-emulator by default
-- Matt Zimmerman <mdz@debian.org> Wed, 31 Jul 2002 00:24:17 -0400
user-mode-linux (2.4.18.41um-1) unstable; urgency=low
* New upstream release
* Disable the hostaudio driver, since it doesn't build anymore
-- Matt Zimmerman <mdz@debian.org> Thu, 18 Jul 2002 23:32:54 -0400
user-mode-linux (2.4.18.39um-1) unstable; urgency=low
* New upstream release
-- Matt Zimmerman <mdz@debian.org> Mon, 8 Jul 2002 21:32:20 -0400
user-mode-linux (2.4.18.37um-1) unstable; urgency=low
* New upstream release
-- Matt Zimmerman <mdz@debian.org> Sun, 7 Jul 2002 00:27:08 -0400
user-mode-linux (2.4.18.36um-1) unstable; urgency=low
* New upstream release
-- Matt Zimmerman <mdz@debian.org> Fri, 5 Jul 2002 17:36:01 -0400
user-mode-linux (2.4.18.35um-1) unstable; urgency=low
* New upstream release
-- Matt Zimmerman <mdz@debian.org> Sat, 29 Jun 2002 10:34:15 -0400
user-mode-linux (2.4.18.32um-1) unstable; urgency=low
* New upstream release
-- Matt Zimmerman <mdz@debian.org> Sat, 15 Jun 2002 12:42:09 -0400
user-mode-linux (2.4.18.31um-1) unstable; urgency=low
* New upstream release
-- Matt Zimmerman <mdz@debian.org> Wed, 5 Jun 2002 21:22:45 -0400
user-mode-linux (2.4.18.30um-1) unstable; urgency=low
* New upstream release
-- Matt Zimmerman <mdz@debian.org> Wed, 29 May 2002 23:18:46 -0400
user-mode-linux (2.4.18.29um-1) unstable; urgency=low
* New upstream release
-- Matt Zimmerman <mdz@debian.org> Thu, 23 May 2002 19:58:34 -0400
user-mode-linux (2.4.18.28um-1) unstable; urgency=low
* New upstream release
* Requires uml-utilities >= 20020521
-- Matt Zimmerman <mdz@debian.org> Tue, 21 May 2002 20:32:43 -0400
user-mode-linux (2.4.18.26um-1) unstable; urgency=low
* New upstream release
* Fixed symbol export issue which prevented release of 25um
-- Matt Zimmerman <mdz@debian.org> Sun, 19 May 2002 12:20:42 -0400
user-mode-linux (2.4.18.25um-1) unstable; urgency=low
* New upstream release
-- Matt Zimmerman <mdz@debian.org> Wed, 15 May 2002 19:25:14 -0400
user-mode-linux (2.4.18.24um-1) unstable; urgency=low
* New upstream release
-- Matt Zimmerman <mdz@debian.org> Mon, 13 May 2002 23:11:43 -0400
user-mode-linux (2.4.18.23um-1) unstable; urgency=low
* New upstream release
-- Matt Zimmerman <mdz@debian.org> Tue, 7 May 2002 23:27:44 -0400
user-mode-linux (2.4.18.22um-1) unstable; urgency=low
* New upstream release
* UML is now self-hosting, meaning that you can now run UML within
itself
http://www.geocrawler.com/lists/3/SourceForge/709/0/8569643/
-- Matt Zimmerman <mdz@debian.org> Sun, 5 May 2002 20:29:59 -0400
user-mode-linux (2.4.18.21um-1) unstable; urgency=low
* New upstream release
-- Matt Zimmerman <mdz@debian.org> Sun, 28 Apr 2002 23:09:11 -0400
user-mode-linux (2.4.18.20um-1) unstable; urgency=low
* New upstream release
-- Matt Zimmerman <mdz@debian.org> Sat, 27 Apr 2002 14:08:16 -0400
user-mode-linux (2.4.18.18um-1) unstable; urgency=low
* New upstream release
* Remove obsolete note about devfs in README.Debian
-- Matt Zimmerman <mdz@debian.org> Sun, 21 Apr 2002 23:13:45 -0400
user-mode-linux (2.4.18.17um-1) unstable; urgency=low
* New upstream release
* Enable initrd support
* Add note to README.Debian about devfs and Debian root filesystems
-- Matt Zimmerman <mdz@debian.org> Sat, 13 Apr 2002 18:13:59 -0400
user-mode-linux (2.4.18.16um-1) unstable; urgency=low
* New upstream release
-- Matt Zimmerman <mdz@debian.org> Wed, 10 Apr 2002 23:08:16 -0400
user-mode-linux (2.4.18.15um-1) unstable; urgency=low
* New upstream release, lots of bug fixes
- Now supports COW on block devices (Closes: #140789)
- I think #140791 may be fixed as well, but have no way to test
* Requires uml-utilities 20020407
-- Matt Zimmerman <mdz@debian.org> Tue, 9 Apr 2002 00:49:31 -0400
user-mode-linux (2.4.18.13um-1) unstable; urgency=low
* New upstream release
-- Matt Zimmerman <mdz@debian.org> Tue, 2 Apr 2002 20:39:18 -0500
user-mode-linux (2.4.18.12um-1) unstable; urgency=low
* New upstream release
- Fixes the console flow control bug which resulted in truncated
output
-- Matt Zimmerman <mdz@debian.org> Thu, 28 Mar 2002 21:39:17 -0500
user-mode-linux (2.4.18.11um-1) unstable; urgency=low
* New upstream release. Jeff Dike <jdike@karaya.com>:
- Since I don't yet know how to eliminate the problems people are seeing
withthe SIGWINCH setup, I made UML more robust against them. You may
see ugly error messages, but they shouldn't kill UML any more. I'd
appreciate knowing about any easy ways that anyone finds of getting
the ugly error messages to happen.
- The crash in the network setup that Matt Zimmerman saw should be gone.
- bfs filesystems will now mount now that the ubd hard sector size is 512 bytes.
- apt-get now works on hostfs now that hostfs_writepage returns the
proper value on success.
- John Byrne's thread creation fixes are now in.
- I cleaned up various other small items as well.
-- Matt Zimmerman <mdz@debian.org> Sun, 24 Mar 2002 00:08:00 -0500
user-mode-linux (2.4.18.10um-1) unstable; urgency=low
* New upstream release.
Jeff Dike <jdike@karaya.com>:
- This patch fixes the winch_interrupt infinite error flood plus some
other SIGWINCH bugs.
- The ptrace headers were cleaned up so that they match the updated
UML porting guide.
- Added TIOCMGET to the list of officially unsupported serial line
ioctls. This gets rid of the error messages you get when you hook
two UMLs together overa serial line consisting of a host pty/tty
pair.
- I added in some of John Byrne's smaller thread fixes.
* Build-depend on exact versions of user-mode-linux and kernel-patch-uml
-- Matt Zimmerman <mdz@debian.org> Fri, 22 Mar 2002 23:08:54 -0500
user-mode-linux (2.4.18.9um-1) unstable; urgency=low
* New upstream release
- Now supports SIGWINCH for terminals
* Fixes unresolved symbols in loop and isofs
* Requires uml-utilities >= 20020320 which is required for port
channels
-- Matt Zimmerman <mdz@debian.org> Thu, 21 Mar 2002 22:15:28 -0500
user-mode-linux (2.4.18.8um-1) unstable; urgency=low
* New upstream release
* Require uml-utilities >= 20020318
* Temporarily disable the loop block device and isofs due to unresolved
symbols
-- Matt Zimmerman <mdz@debian.org> Tue, 19 Mar 2002 09:14:56 -0500
user-mode-linux (2.4.18.7um-1) unstable; urgency=low
* New upstream release
-- Matt Zimmerman <mdz@debian.org> Fri, 15 Mar 2002 21:27:49 -0500
user-mode-linux (2.4.18.6um-1) unstable; urgency=low
* New upstream release
-- Matt Zimmerman <mdz@debian.org> Thu, 14 Mar 2002 19:27:02 -0500
user-mode-linux (2.4.18.4um-3) unstable; urgency=medium
* Rebuild with kernel-source-2.4.18 2.4.18-3, which includes the zlib
security fix
-- Matt Zimmerman <mdz@debian.org> Thu, 14 Mar 2002 09:21:50 -0500
user-mode-linux (2.4.18.4um-2) unstable; urgency=low
* Don't mount devfs by default, to match the Debian packaged kernels. A
base Debian system will not work in UML if devfs is mounted (unless
devfs is running), so everyone had to pass devfs=nomount. It's easier
to pass devfs=mount if the UML system supports it.
-- Matt Zimmerman <mdz@debian.org> Wed, 13 Mar 2002 09:15:20 -0500
user-mode-linux (2.4.18.4um-1) unstable; urgency=low
* New upstream release
* Remove 'build' symlink from kernel module tree (Closes: #138028)
-- Matt Zimmerman <mdz@debian.org> Tue, 12 Mar 2002 22:37:21 -0500
user-mode-linux (2.4.18.2um-1) unstable; urgency=low
* New upstream release, now that kernel-source-2.4.18 is in
* Suggests the newly-released rootstrap tool for easy building of UML
root filesystems
* Enhance the man page, including mentioning the 's' (synchronous)
option for ubd devices (Closes: #137375)
* Disable CONFIG_FS_NTFS because it results in undefined symbols
-- Matt Zimmerman <mdz@debian.org> Sat, 9 Mar 2002 15:41:32 -0500
user-mode-linux (2.4.17.14um-1) unstable; urgency=low
* New upstream release.
-- Matt Zimmerman <mdz@debian.org> Mon, 25 Feb 2002 00:10:05 -0500
user-mode-linux (2.4.17.13um-1) unstable; urgency=low
* New upstream release.
-- Matt Zimmerman <mdz@debian.org> Fri, 22 Feb 2002 22:59:30 -0500
user-mode-linux (2.4.17.12um-1) unstable; urgency=low
* New upstream release.
* Do the initial modules installation in a temporary directory, due to
some weirdness with depmod walking the filesystem and finding
/usr/bin/linux
* Install a lintian override for statically linked /usr/bin/linux
* Strip debugging symbols from UML modules. This makes the installed
package MUCH smaller.
* Build in cramfs support, so that it can be used for booting
* Enable tmpfs module
* Not releasing due to a panic every time klogd is killed when using my
test images
-- Matt Zimmerman <mdz@debian.org> Wed, 20 Feb 2002 23:22:51 -0500
user-mode-linux (2.4.17.11um-1) unstable; urgency=low
* New upstream release.
* Requires the latest uml-utilities, as the control sockets are now
under $HOME instead of /tmp
-- Matt Zimmerman <mdz@debian.org> Tue, 12 Feb 2002 23:43:03 -0500
user-mode-linux (2.4.17.10um-1) unstable; urgency=low
* New upstream release.
* Flesh out the man page some, including content from
user-mode-linux-doc, and use references to that package instead of the
website where appropriate
* Note in README.Debian that apt-get build-dep must be run as root
* Now searches PATH to find kernel when rebooting (Closes: #130875)
* Build some additional modules which might be useful
* Compile in ext3 and reiserfs support so that they can be used for the
root filesystem
* Include modules unpacked instead of in a tarball, so that they can
more easily be accessed from UML via hostfs
-- Matt Zimmerman <mdz@debian.org> Thu, 31 Jan 2002 00:10:22 -0500
user-mode-linux (2.4.17.9um-1) unstable; urgency=low
* New upstream release.
-- Matt Zimmerman <mdz@debian.org> Fri, 25 Jan 2002 21:47:16 -0500
user-mode-linux (2.4.17.8um-1) unstable; urgency=low
* New upstream release.
* Suggests: user-mode-linux-doc (which is in incoming)
-- Matt Zimmerman <mdz@debian.org> Tue, 22 Jan 2002 17:32:59 -0500
user-mode-linux (2.4.17.7um-1) unstable; urgency=low
* New upstream release.
* Add Suggests: xterm (Closes: #129776)
-- Matt Zimmerman <mdz@debian.org> Tue, 22 Jan 2002 02:14:06 -0500
user-mode-linux (2.4.17.5um-1) unstable; urgency=medium
* New upstream release.
* Compile in hostfs support (Closes: #128506)
-- Matt Zimmerman <mdz@debian.org> Mon, 14 Jan 2002 19:03:26 -0500
user-mode-linux (2.4.17.4um-1) unstable; urgency=low
* New upstream release.
-- Matt Zimmerman <mdz@debian.org> Fri, 4 Jan 2002 20:20:58 -0500
user-mode-linux (2.4.17.3um-1) unstable; urgency=low
* New upstream release.
-- Matt Zimmerman <mdz@debian.org> Wed, 2 Jan 2002 01:00:06 -0500
user-mode-linux (2.4.17.2um-1) unstable; urgency=low
* New upstream release.
-- Matt Zimmerman <mdz@debian.org> Sun, 30 Dec 2001 22:19:52 -0500
user-mode-linux (2.4.17.1um-1) unstable; urgency=low
* New upstream release.
* Modified versioning scheme to match upstream's apparent intent
* Depend on newer uml-utilities, as the path to uml_net changed
* Enhance README.Debian to explain how to build with a different kernel
version
-- Matt Zimmerman <mdz@debian.org> Sat, 29 Dec 2001 19:00:45 -0500
user-mode-linux (0.53-2.4.16.2um-1) unstable; urgency=low
* New upstream release.
-- Matt Zimmerman <mdz@debian.org> Mon, 10 Dec 2001 01:25:30 -0500
user-mode-linux (0.53-2.4.16.1um-1) unstable; urgency=low
* New upstream release.
-- Matt Zimmerman <mdz@debian.org> Sun, 9 Dec 2001 22:47:23 -0500
user-mode-linux (0.51-2.4.14-6-1) unstable; urgency=low
* Initial Release. (Closes: #82484)
-- Matt Zimmerman <mdz@debian.org> Thu, 6 Dec 2001 13:16:53 -0500
|